1. Conduid
  2. Developer Tools
  3. MCP
MCP server · Developer Tools

MCP

MCP server: MCP

Unclaimed last commit 8 months ago devtools
44Fair

Scored 4 months ago · breakdown

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

Install
npx mcp

This 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

I know everything about MCP. Ask me about installation, configuration, usage, or troubleshooting.

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 .npmrc with legacy-peer-deps=true is checked in so npm install works 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.

Questions

About MCP

How do I install MCP?

Run npx mcp, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is MCP safe to use with an AI agent?

Its trust score is 44 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is MCP still maintained?

The last commit was 8 months ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.