RagRabbit文档搜索
HTTP-SSESTDIO提供RagRabbit文档索引访问的服务器
提供RagRabbit文档索引访问的服务器
This server implements the Model Context Protocol (MCP) to provide AI models with access to any documentation indexed with an instance of RagRabbit.
The MCP Server acts as a bridge between AI clients and RagRabbit's hosted documentation:
Add a custom mcp server with the name of your product, so that Claude AI can use it when looking for info about it.
in claude_desktop_config.json
(Claude -> Settings -> Developer -> Edit Config)
{
"mcpServers": {
"<name_of_your_documentation_no_spaces>": {
"command": "npx",
"args": ["@ragrabbit/mcp", "http://<RagRabbit install>/", "<name of your documentation>"]
}
}
}
Go to Cursor -> Settings -> Cursor Settings -> MCP
And add a new MCP of type command
with the command:
npx @ragrabbit/mcp", "http://<RagRabbit install>/", "<name of your documentation>"
Arguments:
ragrabbit-url
: (Required) The base URL of your RagRabbit instance, eg https://my-ragrabbit.vercel.com/name
: (Required) Custom name for the documentation search service (defaults to "RagRabbit") so that AI will know to use it when looking for infoPerforms semantic search across the documentation.
Parameters:
query
: String - The search query to find relevant documentsExample:
{ "name": "search_docs", "arguments": { "query": "How to implement authentication?" } }
llms.txt
text/plain
MIT