data-ai MCP Server
An MCP server implementation that provides tools for retrieving and processing documentation through vector search, enabling AI assistants to augment their responses with relevant documentation context.
Discovered via unknown and last synced 3mo ago.
1. Install the package
npx -y @hannesrudolph/mcp-ragdocs
2. Add to claude_desktop_config.json
{
"mcpServers": {
"-hannesrudolph-mcp-ragdocs": {
"command": "npx",
"args": [
"@hannesrudolph/mcp-ragdocs"
]
}
}
}Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) / %APPDATA%\Claude\claude_desktop_config.json (Windows)
(string): The text to search for in the documentation. Can be a natural language query, specific terms, or code snippets.
(number, optional): Maximum number of results to return (1-20, default: 5). Higher limits provide more comprehensive results but may take longer to process.