Docs MCP
Connect Recall’s MCP server to your AI agent so it can access Recall docs.
Overview
Recall.ai provides a fully managed MCP server that's ready to use with Recall.ai's developer documentation.
How to Set Up
Cursor Example
For a more detailed guide, see Cursor.
{
"mcpServers": {
"Inkeep MCP": {
"url": "https://mcp.inkeep.com/recallai/mcp"
}
}
}Windsurf Example
For a more detailed guide, see Windsurf.
{
"mcpServers": {
"inkeepMcp": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.inkeep.com/recallai/mcp"]
}
}
}Claude Desktop Example
For a more detailed guide, see Claude Desktop.
{
"mcpServers": {
"inkeepMcp": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.inkeep.com/recallai/mcp"]
}
}
}Available Tools
The docs MCP server automatically includes these tools based on your knowledge base:
| Tool Name | Description | Use Case |
|---|---|---|
ask-question-about-{product-name} | AI-powered Q&A using the Recall.ai docs | Get direct answers to specific questions |
search-{product-name}-docs | Semantic search through the Recall.ai documentation | Find relevant content and context |
Examples in Action
Basic Q&A
User: "How do I configure rate limiting?"
Assistant: [Uses ask-question-about-inkeep tool]
Response: "Rate limiting in Inkeep can be configured..."
Documentation Search
User: "Find information about API authentication"
Assistant: [Uses search-inkeep-docs tool]
Response: "Here are the relevant sections about API authentication..."Updated about 4 hours ago