Complete guide to the Intuition MCP monorepo
The Intuition MCP monorepo ships 2 MCP servers exposing 15 tools that let AI assistants like Claude query the Intuition knowledge graph, compute trust scores, and verify on-chain reputation data.
8 tools · View playground
7 tools · View playground
git clone https://github.com/intuition-box/mcp.git cd mcp
Run npm install at the repository root. Workspaces are configured so every package gets its dependencies resolved in one pass.
npm install
# apps/playground/.env.local NEXT_PUBLIC_INTUITION_GRAPH_URL=https://graph.intuition.systems/graphql
cd apps/playground npm run dev
The playground runs at http://localhost:3000 and gives you an interactive UI to explore both MCP servers.
mcp/ ├── packages/ │ ├── mcp-general/ # Intuition MCP server (knowledge graph) │ └── mcp-trust/ # Trust Score MCP server (EigenTrust, AgentRank) ├── apps/ │ └── playground/ # Next.js interactive playground & docs ├── package.json # Workspace root └── README.md
Add the following to your Claude Desktop config file to register both servers.
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json{
"mcpServers": {
"intuition": {
"command": "node",
"args": [
"/absolute/path/to/mcp/packages/mcp-general/dist/index.js"
],
"env": {
"NEXT_PUBLIC_INTUITION_GRAPH_URL": "https://graph.intuition.systems/graphql"
}
},
"trust-score": {
"command": "node",
"args": [
"/absolute/path/to/mcp/packages/mcp-trust/dist/index.js"
],
"env": {
"NEXT_PUBLIC_INTUITION_GRAPH_URL": "https://graph.intuition.systems/graphql"
}
}
}
}Replace /absolute/path/to/mcp with the actual path where you cloned the repository. Restart Claude Desktop after saving changes.
get-account-infoget-followersget-followingget-inbound-relationsget-outgoing-edgessearch-account-idssearch-atomssearch-listseigentrustagentrankcomposite-scoresybil-simulationtransitive-trustnetwork-statstrust-pathWhen the playground dev server is running you can also call the tools via HTTP.
curl "http://localhost:3000/api/trust-score?address=0x..."
curl "http://localhost:3000/api/attestations?subject=0x...&limit=50"
curl -X POST http://localhost:3000/api/mcp \
-H "Content-Type: application/json" \
-d '{
"tool": "verifyCredential",
"params": {
"address": "0x...",
"claim": "expert-in-defi"
}
}'Learn about the Intuition protocol
Official MCP specification
View source code & contribute
Explore & try all available servers