Setup Guide

Get started with AgentBrain in 2 minutes after subscribing.

1 Subscribe & Get Your API Key

After subscribing via Stripe, you'll receive an email with your API key. The key looks like:

ab_aBcDeFgHiJkLmNoPqRsTuVwXyZ123456789
✅ Instant Access — Your API key is generated automatically when Stripe confirms payment. No waiting, no manual approval.
2 Add AgentBrain to Your Agent

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"
3 Verify Your Access

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"]
}
✅ Features Unlocked — The API confirms your tier and grants access to all Pro features immediately.
4 Start Using AgentBrain

Your agent can now use these tools based on your tier:

FeatureFreeProTeam
Remember & Recall
Basic Search
Advanced Search
Knowledge Graph
Agent Discovery
Agent Marketplace
Team Brain
🔒 Technical Enforcement — Features are enforced at the API level. If you try to use a feature your tier doesn't have, the API returns an "Upgrade required" message.

Cancel Anytime

Your subscription is managed by Stripe. Cancel anytime and:

← Back to Home