{"tools":[{"name":"search","description":"Search the AI Glot Docs documentation and return the most relevant passages, grouped by the page they come from. Use this before answering any question about AI Glot Docs — it searches the current published documentation directly, which is more reliable than recalling it. Pages are ordered by relevance; passages within a page are in reading order. Each passage reports its line range within the page, so you can tell whether you are seeing a small part of a long page and should call `fetch` for the rest. An empty result means nothing matched closely, not that the topic is missing — the response says what to do next, usually `list_pages` followed by `fetch`.","inputSchema":{"type":"object","properties":{"query":{"type":"string","description":"What you want to know, in natural language or as keywords."},"limit":{"type":"integer","minimum":1,"maximum":25,"default":8,"description":"How many passages to retrieve. Leave unset for 8, which suits most questions."}},"required":["query"],"additionalProperties":false}},{"name":"fetch","description":"Return the complete Markdown of one AI Glot Docs documentation page. Takes the `url` reported by `search` or `list_pages`. Use it once `search` shows a page is relevant but you need the whole procedure, the full parameter table, or the surrounding context rather than a few passages.","inputSchema":{"type":"object","properties":{"url":{"type":"string","description":"The page URL, exactly as returned by `search` or `list_pages`."}},"required":["url"],"additionalProperties":false}},{"name":"list_pages","description":"List the pages of the AI Glot Docs documentation, with optional filters. Use it to see what the documentation covers, to confirm a page exists before citing it, or to find what changed recently. It does not search page contents — use `search` for that.","inputSchema":{"type":"object","properties":{"tab":{"type":"string","description":"Restrict to one navigation area, for example `Guides`."},"type":{"type":"string","enum":["page","api-endpoint"],"description":"Restrict to prose pages or API endpoint pages."},"prefix":{"type":"string","description":"Restrict to ids starting with this, for example `guides/`."},"updated_since":{"type":"string","description":"ISO date. Only pages changed on or after it."}},"additionalProperties":false}}]}