Get Started
Add researched technical knowledge to any AI. 32,354 Q&As across 0 domains.
Choose Your Tool
Select your AI tool and follow the setup instructions
# 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 listNote: Get your API key at agentskb.com/dashboard after signing in with Google
After Setup
Restart your tool, then ask: "What is PostgreSQL work_mem?"
Available Tools
ask_question, search_questions, get_stats
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
POST /api/free/ask POST /api/free/search GET /api/free/stats 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.