← Back to MCP Servers
┌─┐
│D│
│G│
└─┘

DAO Governance Hub

v1.1.5GovernanceTools 4 actions

SERVER URL

http://localhost:3000/api/mcp-server/dao-governance

CONNECTION JSON

{
  "mcpServers": {
    "dao-governance": {
      "command": "npx",
      "args": [
        "mcp-remote@latest",
        "http://localhost:3000/api/mcp-server/dao-governance"
      ]
    }
  }
}

Learn more about supported MCP clients

MCP HOST CONNECTIONS

Connect this MCP server directly to your AI assistant tools by using the JSON config above. Click on a logo to see a demo video.

╔═══╗
║ ▸ ║
║ │ ║
╚═══╝
CursorWatch demo
┌───┐
│ C │
│ L │
└───┘
ClaudeWatch demo

DESCRIPTION

Unified interface for DAO governance participation. Create proposals, vote, delegate voting power, and track governance metrics across Snapshot, Tally, and on-chain governance systems.

AVAILABLE TOOLS

getProposals

Fetch active governance proposals

submitVote

Submit vote on proposal

delegateVotes

Delegate voting power

getVotingPower

Check current voting power

CODE EXAMPLES

JavaScript
// DAO Governance Client
import { Client } from '@modelcontextprotocol/sdk';

const client = new Client();
await client.connect('https://dao-mcp.x402.app/sse');

const proposals = await client.callTool({
  name: 'getProposals',
  arguments: {
    dao: 'uniswap',
    status: 'active'
  }
});

console.log('Active Proposals:', proposals.length);

Official MCP SDK Documentation:
https://github.com/modelcontextprotocol/modelcontextprotocol

Installation:
npm install @modelcontextprotocol/sdk

Authentication:
- For MCP Hosts (Cursor, Windsurf, Claude Desktop), saving the JSON config to your tool will automatically trigger the browser OAuth flow
- For programmatic access, obtain the OAuth token by running "npx mcp-remote <url>" in the terminal and follow the instructions

x4