MCP Server
Package: @quantulabs/8004-mcp
Install (local build):
git clone https://github.com/QuantuLabs/8004-mcp.gitcd 8004-mcpbun installbun run buildnode dist/index.jsWhat 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:
claude mcp add 8004 node /absolute/path/to/8004-mcp/dist/index.jsKey Tools:
| Tool | Description |
|---|---|
agent_search | Search agents with filters (name, OASF skills/domains, keyword, feedback, capabilities). Omit chain to search all deployed chains |
agent_get | Get agent details by global ID (sol:<pubkey>, eth:<chainId>:<tokenId>) |
agent_register | Register a new agent on-chain |
agent_list_by_owner | List all agents owned by an address |
reputation_get | Get reputation summary (trust tier, quality score, stats) |
feedback_give | Submit feedback for an agent (requires signer) |
leaderboard_get | Get top agents ranked by reputation |
wallet_create | Create Solana or EVM wallet |
cache_search | Full-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: