MCP
MCP server: MCP
Installation
npx mcpAsk AI about MCP
Powered by Claude Β· Grounded in docs
I know everything about MCP. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Reviews
Documentation
Intuition MCP Monorepo
Model Context Protocol servers for the Intuition knowledge graph and trust network. Ships two MCP servers and an interactive playground for exploring them.
Playground: mcp.intuition.box
Monorepo Structure
βββ packages/
β βββ mcp-general/ # @intuition-box/mcp-general β Intuition knowledge graph MCP
β β 8 tools: accounts, followers, relations, atoms, lists
β βββ mcp-trust/ # @intuition-box/mcp-trust β Trust scoring MCP
β 7 tools: EigenTrust, AgentRank, sybil detection, composite scores
βββ apps/
β βββ playground/ # Next.js app β MCP directory, per-server playgrounds, docs
βββ package.json # npm workspaces root
Getting Started
Prerequisites
- Node.js >= 18
- npm >= 9 (ships with Node 18+)
Quick Start
git clone https://github.com/intuition-box/mcp.git
cd mcp
npm install
npm run dev
npm run dev starts the playground at http://localhost:3000.
Note: An
.npmrcwithlegacy-peer-deps=trueis checked in sonpm installworks without extra flags.
Running Individual Packages
# Intuition MCP server (watch mode)
npm run dev --workspace packages/mcp-general
# Trust Score MCP server
npm run dev --workspace packages/mcp-trust
Building
# Build all workspaces
npm run build
# Build a single package
npm run build --workspace packages/mcp-general
npm run build --workspace packages/mcp-trust
Testing
# Run all workspace tests
npm test
# Run tests for a specific package
npm test --workspace packages/mcp-trust
Claude Desktop Integration
Add both servers to your Claude Desktop config to give Claude access to the full Intuition toolkit.
Config file location:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%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 path where you cloned the repo. Restart Claude Desktop after saving.
Packages
@intuition-box/mcp-general
MCP server for the Intuition knowledge graph. Provides read access to accounts, relationships, atoms, and curated lists.
| Tool | Description |
|---|---|
get-account-info | Retrieve profile and metadata for an account |
get-followers | List accounts following a given account |
get-following | List accounts a given account follows |
get-inbound-relations | Inbound relation edges pointing to an account |
get-outgoing-edges | Outgoing relation edges from an account |
search-account-ids | Search account identifiers by query string |
search-atoms | Search atoms by label or content |
search-lists | Search curated lists |
@intuition-box/mcp-trust
Trust computation engine over the Intuition attestation graph. Implements EigenTrust, AgentRank, sybil detection, and path-based trust.
| Tool | Description |
|---|---|
eigentrust | Compute EigenTrust scores for agents in the trust graph |
agentrank | Rank agents using AgentRank over attestation edges |
composite-score | Weighted composite trust score from multiple signals |
sybil-simulation | Sybil-resistance simulation for fake identity detection |
transitive-trust | Transitive trust between two agents across paths |
network-stats | Aggregate statistics about trust network topology |
trust-path | Strongest trust path between source and target agents |
License
MIT
