list_routes
Index of raw REST routes from the live OpenAPI spec: method, path, summary, tag.
When to use:
You need a long-tail path for call_api and do not want to guess
Checking whether an endpoint exists before building around it
Mapping what raw data backs a curated tool
Prefer curated tools for standard jobs — this indexes the escape hatch, it is not a replacement for list_capabilities.
Do not use when: a curated tool already covers the outcome (call list_capabilities instead).
Note: the spec omits /lol entirely, though LoL routes work. Filtering by game=lol returns that caveat rather than an empty list.
Parallel-safe: yes. Upstream cost: 1. Example: { "game": "ufc", "q": "rankings" }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| q | No | Free-text filter over path and summary. | |
| game | No | Filter to one game prefix (also accepts fortnite). Omit for all routes. | |
| limit | No | Max routes to return (default 60, max 200). |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ok | Yes | true if the tool succeeded | |
| data | No | Result payload when ok is true; null on error | |
| meta | Yes | ||
| error | No | ||
| partial | No | ||
| pagination | No |