A Model Context Protocol server boilerplate
If you already use MCP Snapshot Server, the mcp snapshot server mcp server is the piece that lets your assistant work with it directly. A Model Context Protocol server boilerplate.
A Model Context Protocol server for interacting with Snapshot.org. This server provides MCP-compliant tools for querying Snapshot spaces, proposals, and users.
The server ships on npm as mcp-snapshot-server, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.
The toolset is worth reading before you wire it up, because it tells you what the integration is really for:
getSpaces — Get a list of Snapshot spaces - limit: Number of spaces to fetch (optional) - skip: Number of spaces to skip (optional)getRankedSpaces — Get a ranked list of Snapshot spaces with detailed information - first: Number of spaces to fetch (default: 18) - skip: Number of spaces to skipgetProposals — Get proposals for a specific space - spaceId: ID of the space - state: Filter by proposal state (active, closed, pending, all) - limit: Number ofgetProposal — Get details of a specific proposal - proposalId: ID of the proposalgetUser — Get information about a Snapshot user - address: Ethereum address of the userThis sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. MCP Snapshot Server's toolset — getSpaces, getRankedSpaces, getProposals and 2 more — is a fair guide to whether it matches your workflow. It is maintained by crazyrabbitLTC; worth a glance at recent repository activity before you build anything load-bearing on it.
This entry was verified against MCP Snapshot Server's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.
| Tool | What it does |
|---|---|
| getSpaces | Get a list of Snapshot spaces - limit: Number of spaces to fetch (optional) - skip: Number of spaces to skip (optional) |
| getRankedSpaces | Get a ranked list of Snapshot spaces with detailed information - first: Number of spaces to fetch (default: 18) - skip: Number of spaces to skip (default: 0) - category: Category to filter by (default: 'all') - search: S |
| getProposals | Get proposals for a specific space - spaceId: ID of the space - state: Filter by proposal state (active, closed, pending, all) - limit: Number of proposals to fetch |
| getProposal | Get details of a specific proposal - proposalId: ID of the proposal |
| getUser | Get information about a Snapshot user - address: Ethereum address of the user |
{
"mcpServers": {
"snapshot-server": {
"command": "npx",
"args": ["-y", "mcp-snapshot-server"]
}
}
}Add to claude_desktop_config.json, then restart Claude Desktop.
A knowledge graph your assistant keeps between sessions — entities, relations and observations that persist.
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Your workspace, on speaking terms with AI — search, read and write Notion pages and databases.
A structured scratchpad for hard problems — stepwise reasoning with revisions, branches and visible logic.
Symbol-level code navigation, refactoring and memory for coding agents — the IDE brain your assistant has been missing.
Chat with your second brain — search, read and write vault notes through the Local REST API.