We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/reflex-dev/mcp-example'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
tools.md•894 B
# Tools
The MCP Docs Server provides tools for searching and working with documentation.
## search_docs
Search through all documentation files for a given query.
### Parameters
- `query` (string, required): The search term to find in documentation
- `category` (string, optional): Filter results to a specific category
### Example Usage
```json
{
"query": "installation",
"category": "getting-started"
}
```
### Returns
A list of matching documents with excerpts showing where the query appears.
### Search Behavior
- Case-insensitive search
- Searches through entire file content
- Returns up to 5 matching lines per document
- Shows line numbers for context
## Future Tools
Planned tools for future versions:
- `get_doc_metadata`: Get metadata about a documentation file
- `list_categories`: List all available categories
- `validate_links`: Check for broken internal links