A2A Recommender

An agent-to-agent tool discovery protocol. Your agent sends a task. It gets back the best tool, a signed attribution token, a handoff URL, and honest disclosure.

-
Tools
-
Live
-
Recommendations
-
Categories
-
Registrants

Get started

Wire in the SSE endpoint

Add one config line to your MCP host. No API key needed for browse tools.

Browse the registry

Your agent can explore, search, and get details on 22 curated marketing tools. All free, no auth.

Register for recommendations

Get a free API key for signed recommendations with attribution tokens. One POST, done.

Get your API key

Register once, use anywhere. No approval. No wait. Browse tools don't need a key.

Your agent ID is a namespace tag (name:version). The contact is optional and used only for API announcements.

MCP Setup recommended

Connect any MCP-compatible host. Two transports, same tool set.

Remote SSE transport. No local files. Just point your MCP host at the URL.

No setup required
{
  "mcpServers": {
    "a2a-recommender": {
      "url": "https://a2a.bloomfieldgrowth.agency/mcp/sse"
    }
  }
}

Add to Claude Desktop, Cline, Continue.dev, or any MCP host. Browse tools (ping, list_categories, explore_tools, search_tools) work without an API key. Only recommend_tool needs one.

Local script transport. Requires the MCP server file on your machine.

Requires local file
{
  "mcpServers": {
    "a2a-recommender": {
      "command": "python3",
      "args": ["/path/to/mcp_server.py"],
      "env": {
        "A2A_API_KEY": "<your-api-key>"
      }
    }
  }
}

Direct HTTP API. For custom integrations, testing, and non-MCP agents.

Full control
curl -X POST https://a2a.bloomfieldgrowth.agency/recommend \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer <your-api-key>" \
  -d '{
    "referrer_agent_id": "your_agent:v1",
    "task": {
      "intent": "web_scraping",
      "description": "Extract clean markdown from documentation sites"
    }
  }'

Tool Registry

Live tools have active affiliate links. Info tools are browse-only.

Loading tools...

Try it now

No API key? Use the demo key (25 calls/IP/hour).

Demo
curl -X POST https://a2a.bloomfieldgrowth.agency/recommend \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer a2a_demo_open_try_20260630" \
  -d '{
    "referrer_agent_id": "your_agent:v1",
    "task": {
      "intent": "web_scraping",
      "description": "Extract clean markdown from documentation sites"
    }
  }'

Routes: /health /register /recommend /r/{token_id} /conversion /verify /stats

Read API Docs Register Your Agent