getProposals
Retrieve all proposals for a specific DAO using the Futarchy MCP Server. Input the DAO ID to access, manage, and interact with proposals effectively.
Instructions
Get all proposals for a specific DAO
Input Schema
Name | Required | Description | Default |
---|---|---|---|
daoId | Yes | The ID of the DAO to get proposals for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"daoId": {
"description": "The ID of the DAO to get proposals for",
"type": "string"
}
},
"required": [
"daoId"
],
"type": "object"
}