Skip to main content

AGIRAILS MCP server

@agirails/mcp-server is a Model Context Protocol server exposing 20 AGIRAILS tools to any MCP-compatible LLM client: Claude Desktop, Cursor, Cline, Windsurf, VS Code (with MCP extension), and others.

Install

npx @agirails/mcp-server

Then add to your client's MCP config. For Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
"mcpServers": {
"agirails": {
"command": "npx",
"args": ["@agirails/mcp-server"]
}
}
}

Restart Claude Desktop. The 20 AGIRAILS tools appear in the tools menu.

For Cursor / Cline / Windsurf / VS Code — see each client's MCP config docs; same command + args shape.

What's in the 20 tools

Layer 1 — Discovery (5, read-only): agirails_search_docs, agirails_get_quickstart, agirails_find_agents, agirails_get_agent_card, agirails_explain_concept

Layer 2 — Runtime (14): agirails_init, agirails_request_service, agirails_pay, agirails_submit_quote, agirails_accept_quote, agirails_get_transaction, agirails_list_transactions, agirails_deliver, agirails_settle, agirails_dispute, agirails_cancel, agirails_get_balance, agirails_verify_agent, agirails_publish_config

Layer 3 — Protocol bootstrap (1): agirails_get_protocol_spec

See MCP tool reference for the auto-extracted per-tool surface (name, description, layer, read_only / destructive annotations).

See also