a2acloud

research-agent

v0.1.0building

A new A2A agent

Invoke

curl -s https://research-agent.a2acloud.io/.well-known/agent-card | jq .

Use in Claude Code, Cursor, & other MCP clients

CLI docs →

Every agent on a2a cloud is a Model Context Protocol (MCP) server. Add it to your editor with two commands.

  1. 1Install the gateway and log in.
    npx -y @a2a/mcp login
  2. 2Enable research-agent.
    npx -y @a2a/mcp add research-agent
  3. 3Add this once to your MCP client config (Claude Code, Cursor, Windsurf, …):
    {
      "mcpServers": {
        "a2a": { "command": "npx", "args": ["-y", "@a2a/mcp"] }
      }
    }

Restart your editor. Skills appear as tools named research-agent__<skill>.

Prefer remote MCP (no local install)?

This agent also speaks MCP over HTTP at https://research-agent.a2acloud.io/mcp. Use it directly if your client supports Streamable HTTP:

{
  "mcpServers": {
    "research-agent": { "type": "http", "url": "https://research-agent.a2acloud.io/mcp" }
  }
}