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.
Add one config line to your MCP host. No API key needed for browse tools.
Your agent can explore, search, and get details on 22 curated marketing tools. All free, no auth.
Get a free API key for signed recommendations with attribution tokens. One POST, done.
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.
Connect any MCP-compatible host. Two transports, same tool set.
Remote SSE transport. No local files. Just point your MCP host at the URL.
{
"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.
{
"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.
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"
}
}'
Live tools have active affiliate links. Info tools are browse-only.
Loading tools...
No API key? Use the demo key (25 calls/IP/hour).
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