60 Second Setup

Get Started

Add researched technical knowledge to any AI. 32,354 Q&As across 0 domains.

No signup needed for 300/mo Sign in for 1,000/mo Pro/Scale: Add API key

Choose Your Tool

Select your AI tool and follow the setup instructions

bash
# Add AgentsKB to Claude Code (free tier: 300/month)
claude mcp add --transport http agentskb https://mcp.agentskb.com/mcp-kb

# For Pro/Scale users - add your API key for full quota:
claude mcp add --transport http agentskb https://mcp.agentskb.com/mcp-kb \
  --header "X-AgentsKB-Key: YOUR_API_KEY"

# Verify it's registered
claude mcp list

Note: Get your API key at agentskb.com/dashboard after signing in with Google

Questions we can't answer are queued for research and may become part of our KB - anonymously. Learn more

After Setup

Restart your tool, then ask: "What is PostgreSQL work_mem?"

Available Tools

ask_question, search_questions, get_stats

Need Help?

Check full docs or email us

Or Use the REST API

For custom integrations, use our API directly - no signup required

cURL

curl -X POST "https://agentskb-api.agentskb.com/api/free/ask" \
  -H "Content-Type: application/json" \
  -d '{"question": "What is JWT refresh token pattern?"}'

JavaScript

const res = await fetch('https://agentskb-api.agentskb.com/api/free/ask', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({ question: 'What is JWT refresh token pattern?' })
});
const { answer, confidence, sources } = await res.json();
console.log(answer);

API Endpoints

Ask a question POST /api/free/ask
Search Q&As POST /api/free/search
Get statistics GET /api/free/stats
Health check GET /health

Troubleshooting

"Connection Failed" in Claude Code

This is normal after adding MCP servers. Just restart Claude Code:

exit && claude
AgentsKB not responding to questions

The MCP server needs a full restart to activate. Close and reopen your tool completely.

Want to remove AgentsKB?

For Claude Code:

claude mcp remove agentskb

For others: Remove the "agentskb" entry from your config file.

Rate limit exceeded

Anonymous: 300 requests/month. Sign in for 1,000 requests/month, or upgrade to Pro for 10,000 requests/month.

How do I use my Pro/Scale quota with MCP?

Add your API key to your MCP config. Get your key at agentskb.com/dashboard after signing in.

For Claude Code:

claude mcp add --transport http agentskb https://mcp.agentskb.com/mcp-kb --header "X-AgentsKB-Key: YOUR_API_KEY"

For other tools: Add the X-AgentsKB-Key header or AGENTSKB_API_KEY env variable. See the setup examples above.

Ready to Build?

Explore the playground or check out our full documentation