Search Astrotechne MCP documentation
Request and response shapes
Input shape
{ query: string; toolNames?: CurrentToolName[]; routeNames?: string[]; maxResults?: number }Output shape
{ query: string; results: DocsIndexEntry[] }Examples
Request example
{
"query": "How do I save a chart?",
"toolNames": [
"save_chart"
]
}Response example
{
"query": "How do I save a chart?",
"results": []
}Common validation errors
- toolNames accepts only tools registered by the current public MCP server.
Related questions
- MCP docs search
- tool examples
- API task guide