Skip to content

MCP Server

Package: @quantulabs/8004-mcp

Install (local build):

Terminal window
git clone https://github.com/QuantuLabs/8004-mcp.git
cd 8004-mcp
bun install
bun run build
node dist/index.js

What it does: Multi-chain Model Context Protocol (MCP) server that gives AI agents direct access to 8004 operations. Supports Solana + EVM chains (Ethereum, Base, Polygon, BSC, Monad).

Quick Setup (add to your MCP config):

{
"mcpServers": {
"8004": {
"command": "node",
"args": ["/absolute/path/to/8004-mcp/dist/index.js"],
"env": {
"NETWORK_MODE": "testnet",
"SOLANA_CLUSTER": "devnet"
}
}
}
}

Or via CLI:

Terminal window
claude mcp add 8004 node /absolute/path/to/8004-mcp/dist/index.js

Key Tools:

ToolDescription
agent_searchSearch agents with filters (name, OASF skills/domains, keyword, feedback, capabilities). Omit chain to search all deployed chains
agent_getGet agent details by global ID (sol:<pubkey>, eth:<chainId>:<tokenId>)
agent_registerRegister a new agent on-chain
agent_list_by_ownerList all agents owned by an address
reputation_getGet reputation summary (trust tier, quality score, stats)
feedback_giveSubmit feedback for an agent (requires signer)
leaderboard_getGet top agents ranked by reputation
wallet_createCreate Solana or EVM wallet
cache_searchFull-text search agents by name (FTS5)

Features:

  • Cross-chain agent discovery (Solana + 5 EVM chains)
  • Unified API with automatic chain routing
  • Encrypted wallet management with auto-lock
  • SQLite FTS5 local cache for fast search
  • ATOM reputation integration (Solana)
  • IPFS upload via Studio MCP endpoint by default, with optional Pinata, Filecoin, or custom node overrides
  • x402 payment protocol integration
  • OASF standards support

Links: