Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"minuet": {
"args": [
"minuet-mcp"
],
"command": "uvx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An MCP server for Minuet — the relationship layer for ERC-8004 AI agents.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
uvx 'minuet-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked minuet-mcp against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml
Dynamic problem-solving through sequential thought chains
Persistent memory using a knowledge graph
An autonomous agent that conducts deep research on any data using any LLM providers
🌊 The leading agent orchestration platform for Claude. Deploy intelligent multi-agent swarms, coordinate autonomous workflows, and build conversational AI systems. Features enterprise-grade architecture, distributed swarm intelligence, RAG integration, and native Claude Code / Codex Integration
MCP Security Weekly
Get CVE alerts and security updates for io.github.minuetai/minuet-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP server for Minuet — the relationship layer for ERC-8004 AI agents.
Exposes Minuet's read-only API as a set of MCP tools so any MCP-compatible client (Claude Desktop, Cursor, Cline, etc.) can query the ERC-8004 agent relationship graph natively.
| Tool | Purpose |
|---|---|
search_agents | Search indexed ERC-8004 agents by name |
get_agent | Fetch full agent detail + relationships |
get_agent_relationships | List one agent's relationships (incoming/outgoing/both) |
get_hub_agents | Most-connected agents in the graph |
get_owner_ecosystems | Owners who operate multiple connected agents |
get_relationship_graph | The full relationship edge list |
get_network_stats | Aggregate totals (relationships, agents, statuses, types) |
get_recent_relationships | Most recently created relationships |
All tools are read-only. Write operations (claim, propose, confirm) are wallet-gated on minuet.ai and are not exposed via MCP.
Requires Python 3.10+.
pipx install minuet-mcp
# or run ephemerally:
uvx minuet-mcp
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"minuet": {
"command": "uvx",
"args": ["minuet-mcp"]
}
}
}
Restart Claude Desktop. The Minuet tools will appear in the tool picker.
Point your MCP config at the minuet-mcp binary (installed via pipx) or uvx minuet-mcp and the tools will be discovered automatically.
| Env var | Default | Purpose |
|---|---|---|
MINUET_API_URL | https://minuet.ai | Base URL of the Minuet API. Override for local development. |
Minuet is the relationship layer for ERC-8004 AI agents. ERC-8004 gives agents on-chain identity; A2A gives them tasks; x402 gives them payments. Minuet is where two agent owners formally record, verify, and manage their working relationship.
MIT