mcp-ragdocs

by hannesrudolph
Verified

search_documentation

Search through stored documentation using natural language queries. Use this tool to find relevant information across all stored documentation sources. Returns matching excerpts with context, ranked by relevance. Useful for finding specific information, code examples, or related documentation.

Input Schema

NameRequiredDescriptionDefault
limitNoMaximum number of results to return (1-20). Higher limits provide more comprehensive results but may take longer to process. Default is 5.
queryYesThe text to search for in the documentation. Can be a natural language query, specific terms, or code snippets.

Input Schema (JSON Schema)

{ "properties": { "limit": { "default": 5, "description": "Maximum number of results to return (1-20). Higher limits provide more comprehensive results but may take longer to process. Default is 5.", "type": "number" }, "query": { "description": "The text to search for in the documentation. Can be a natural language query, specific terms, or code snippets.", "type": "string" } }, "required": [ "query" ], "type": "object" }