getProposal
Retrieve a specific proposal by ID using the Futarchy MCP Server to manage DAOs and proposals on the Solana protocol through API or chat interfaces.
Instructions
Get a specific proposal by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
proposalId | Yes | The ID of the proposal to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"proposalId": {
"description": "The ID of the proposal to retrieve",
"type": "string"
}
},
"required": [
"proposalId"
],
"type": "object"
}