Let your AI assistant search documentation, retrieve code examples, and explore scraper configurations — all through the MCP protocol. No API key required.
6 tools for searching, browsing, and retrieving API documentation.
Browse all core API documentation pages with category filtering and pagination.
View all 31 scrapers with example documentation and their available endpoints.
Get full endpoint documentation including request body, response fields, and code examples.
Keyword search across all documentation — titles, descriptions, and endpoint paths.
Get cURL, Python, or API response examples for any endpoint.
Get the full sidebar navigation structure showing how docs are organized.
Connect to the lobstr.io MCP server from your preferred AI client. No authentication required.
claude mcp add lobstrio-docs \
--transport http \
https://staging.docs.lobstr.io/api/mcp{
"mcpServers": {
"lobstrio-docs": {
"type": "http",
"url": "https://staging.docs.lobstr.io/api/mcp"
}
}
}{
"mcpServers": {
"lobstrio-docs": {
"type": "http",
"url": "https://staging.docs.lobstr.io/api/mcp"
}
}
}curl -X POST https://staging.docs.lobstr.io/api/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "search_docs",
"arguments": { "query": "squid", "limit": 2 }
},
"id": 1
}'
# Response:
# {
# "jsonrpc": "2.0",
# "id": 1,
# "result": {
# "content": [{
# "type": "text",
# "text": "Found 2 result(s) for \"squid\":\n\n1. Create Squid (POST /v1/squids)..."
# }]
# }
# }Server URL: https://staging.docs.lobstr.io/api/mcp
Public endpoint — no API key or OAuth required. Works with any MCP-compatible client.
Once connected, try asking your AI assistant:
The MCP server uses JSON-RPC 2.0 over HTTP POST.
| Method | Description |
|---|---|
| initialize | Handshake — returns server info and capabilities |
| tools/list | List all available tools with input schemas |
| tools/call | Execute a tool with arguments |