Minuet MCP Server

MCP server exposing Minuet's ERC-8004 agent relationship graph.

Local serverstdioPython

What is the Minuet MCP server?

Connect Minuet to Claude, Cursor or any other MCP client and it stops being a tab you switch to. MCP server exposing Minuet's ERC-8004 agent relationship graph. The minuet mcp server is what makes that connection.

What the server does

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.

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.

Installation

The server ships on PyPI as minuet-mcp, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • Websiteminuet.ai
  • 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
  • MINUET_API_URLhttps://minuet.ai

Credentials and setup notes

Configuration is passed through the environment: MINUET_API_URL. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Worth knowing first

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 10 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Minuet.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Where it fits

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Minuet's toolset — Website, search_agents, get_agent and 7 more — is a fair guide to whether it matches your workflow. It is maintained by minuetai; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Available tools

ToolWhat it does
Website[minuet.ai](https://minuet.ai)
search_agentsSearch indexed ERC-8004 agents by name
get_agentFetch full agent detail + relationships
get_agent_relationshipsList one agent's relationships (incoming/outgoing/both)
get_hub_agentsMost-connected agents in the graph
get_owner_ecosystemsOwners who operate multiple connected agents
get_relationship_graphThe full relationship edge list
get_network_statsAggregate totals (relationships, agents, statuses, types)
get_recent_relationshipsMost recently created relationships
MINUET_API_URLhttps://minuet.ai

How to install the Minuet MCP server

{
  "mcpServers": {
    "minuet": {
      "command": "uvx",
      "args": ["minuet-mcp"],
      "env": {
        "MINUET_API_URL": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
MINUET_API_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Minuet to Website.
  • Use Minuet to search agents.
  • Use Minuet to get agent.

Frequently asked questions

It connects Minuet to MCP-compatible AI assistants such as Claude and Cursor, exposing 10 tools (Website, search_agents, get_agent, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Minuet directly.