drio
Open app

MPC Tally API Server

Source

A Model Context Protocol (MCP) server that enables AI agents to interact with the Tally API, providing access to DAO governance data, proposals, and metadata. Built with TypeScript and GraphQL, it offers a secure and efficient way to fetch and sort DAO information through standardized MCP functions.

Catalog onlyCatalog onlySTDIO

Overview

MPC Tally API Server is a Model Context Protocol (MCP) server that enables AI agents to interact with the Tally API, providing access to DAO governance data, proposals, and metadata.

To use the MPC Tally API Server, clone the repository, install dependencies, configure your API key, and run the server using the provided commands.

  • List DAOs sorted by popularity or exploration status - Fetch comprehensive DAO metadata including social links and governance information - Pagination support for handling large result sets - Built with TypeScript and GraphQL - Full test coverage with Bun's test runner
  1. Fetching and displaying DAO governance data for analysis.
  2. Integrating DAO information into AI applications.
  3. Supporting decentralized governance through accessible metadata.

Add to your AI client

Use these steps to connect MPC Tally API Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mpc-tally-api-server-crazyrabbitltc": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mpc-tally-api-server-crazyrabbitltc"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mpc-tally-api-server-crazyrabbitltc": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mpc-tally-api-server-crazyrabbitltc"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mpc-tally-api-server-crazyrabbitltc": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mpc-tally-api-server-crazyrabbitltc"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mpc-tally-api-server-crazyrabbitltc": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mpc-tally-api-server-crazyrabbitltc"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mpc-tally-api-server-crazyrabbitltc": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mpc-tally-api-server-crazyrabbitltc"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mpc-tally-api-server-crazyrabbitltc": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mpc-tally-api-server-crazyrabbitltc"
      ]
    }
  }
}

FAQ

What is the purpose of the MPC Tally API Server?

It allows AI agents to fetch and interact with DAO governance data efficiently.

How do I secure my API key?

Keep your API key secure by not committing it to version control and using environment variables for configuration.

Can I customize the sorting of DAOs?

Yes! You can sort DAOs by various criteria such as popularity or exploration status.