getDao
Retrieve a specific DAO by its ID using the Futarchy MCP Server on Solana, simplifying DAO management and integration with the Futarchy protocol.
Instructions
Get a specific DAO by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
daoId | Yes | The ID of the DAO to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"daoId": {
"description": "The ID of the DAO to retrieve",
"type": "string"
}
},
"required": [
"daoId"
],
"type": "object"
}