A live JSON-RPC 2.0 endpoint at https://absorb.md/api/mcp. Compatible with Claude Code, Cursor, Aider, Continue, and any MCP client. Six tools across 286 people, 29,346 compiled entries, and 30 topic wikis.
Numbers refresh on page load · queried directly from production Postgres
Every tool returns structured JSON with citations back to the original source URL. No scraping, no HTML parsing, no rate limits on the public endpoint.
Three real curl calls against the production endpoint. No API key, no headers beyond content-type, no signup.
# Discover every tool the server exposes
curl -X POST https://absorb.md/api/mcp \
-H "content-type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'# Read Karpathy's full mega-wiki
curl -X POST https://absorb.md/api/mcp \
-H "content-type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "get_person",
"arguments": { "handle": "karpathy" }
}
}'# Search every compiled entry for "test-time compute"
curl -X POST https://absorb.md/api/mcp \
-H "content-type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 3,
"method": "tools/call",
"params": {
"name": "search_entries",
"arguments": { "query": "test-time compute", "limit": 10 }
}
}'Pick your tool. Run the command or paste the config. You're done.
claude mcp add absorb-md --transport http https://absorb.md/api/mcp
{
"mcpServers": {
"absorb-md": {
"url": "https://absorb.md/api/mcp"
}
}
}{
"mcpServers": {
"absorb-md": {
"serverUrl": "https://absorb.md/api/mcp"
}
}
}{
"mcpServers": {
"absorb-md": {
"transport": "http",
"url": "https://absorb.md/api/mcp"
}
}
}Any MCP client that supports HTTP transport works. POST JSON-RPC 2.0 to https://absorb.md/api/mcp
Your agents ask structured questions and get cited claims with provenance back to the source URL. No other AI knowledge product ships a public MCP endpoint. The newsletters in your inbox cannot be queried by Claude Code; absorb.md can.
Public MCP endpoint is free. For private MCP with per-portfolio custom topic slices, see /for-vc for enterprise pricing.
Want to also run the local CLI? Connect in 30 seconds →