About MCP
MCP is an MCP server published by intuition-box in the Developer Tools category: mCP server: MCP. It has been installed 0 times through Conduid.
The repository has 2 stars and 0 forks, with the last commit 8 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.
Install
npx mcpThis server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.
Ask AI
Ask AI about MCP
Powered by Claude · Grounded in docs
Security checks
- ·README presentNot checked yet.
- ·License declaredNot checked yet.
- ·Tests presentNot checked yet.
- ·Dependencies pinnedNot checked yet.
- ·No dynamic code executionNot checked yet.
- !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.
README
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
README mirrored from the source repository 4 months ago. The original is authoritative.