Get started with AgentBrain in 2 minutes after subscribing.
After subscribing via Stripe, you'll receive an email with your API key. The key looks like:
ab_aBcDeFgHiJkLmNoPqRsTuVwXyZ123456789
Add AgentBrain as an MCP server in your agent's configuration:
{
"mcpServers": {
"agentbrain": {
"command": "npx",
"args": ["-y", "@anthropic/mcp-remote-client", "https://agentbrain-auth.onrender.com/mcp"],
"env": {
"AGENTBRAIN_API_KEY": "ab_your_api_key_here"
}
}
}
}
Or use the CLI:
npx @anthropic/mcp-remote-client https://agentbrain-auth.onrender.com/mcp \
--header "Authorization: Bearer ab_your_api_key_here"
Test that your API key works:
curl -H "X-API-Key: ab_your_api_key_here" \
https://agentbrain-auth.onrender.com/auth/limits
Response for Pro user:
{
"tier": "pro",
"max_memories": 50000,
"max_api_calls_per_day": 10000,
"features": ["basic_search", "advanced_search", "remember", "recall", "context_packs", "agent_discovery", "knowledge_graph"]
}
Your agent can now use these tools based on your tier:
| Feature | Free | Pro | Team |
|---|---|---|---|
| Remember & Recall | ✅ | ✅ | ✅ |
| Basic Search | ✅ | ✅ | ✅ |
| Advanced Search | ❌ | ✅ | ✅ |
| Knowledge Graph | ❌ | ✅ | ✅ |
| Agent Discovery | ❌ | ✅ | ✅ |
| Agent Marketplace | ❌ | ❌ | ✅ |
| Team Brain | ❌ | ❌ | ✅ |
Your subscription is managed by Stripe. Cancel anytime and: