LlamaIndex is Agent-Ready to agents.
Discry independently scored how well an AI agent can discover and understand the LlamaIndex API from what’s public — not whether it’s usable. Below: every signal we checked, what’s costing the score, and what to change.
SCORED UNDER RUBRIC 1.2 · A full re-launch under Discry Score 2.5 — a new behavioral instrument, not comparable to these scores — is in progress.
Discovery
45% of score · 90/100Comprehension
55% of score · 100/100What we found
- An agent discovering LlamaIndex lands on an exceptionally machine-readable surface: a clean llms.txt that documents programmatic access (append `index.md` to any page for raw markdown) plus live REST search/grep/read/list endpoints, and the Parse quickstart hands agents a one-line hosted docs MCP server (`claude mcp add llama-index-docs`). Very little else in the corpus goes this far.
- A valid, publicly hosted OpenAPI 3.1 spec (api.cloud.llamaindex.ai/api/openapi.json) lets an agent enumerate LlamaCloud endpoints, Bearer auth, and schemas directly instead of scraping HTML.
- Error self-correction is first-class: a dedicated Troubleshooting & Error Codes page gives agents actionable fixes (exact `Authorization: Bearer llx-...` header format, region/key mismatches, 429 batching guidance), so an agent can recover from failures rather than guess.
- Capability boundaries are explicit and machine-checkable — rate limits (QPS tables, free-tier 20 rpm, 429 behavior) and a limitations page (512MB max file, 64KB/page text, configurable timeout math) — so an agent knows what will fail before it tries.
- The only gaps are cosmetic or near-universal: no llms-full.txt and no `.well-known/mcp.json` at the standard path (they instead ship a live hosted docs MCP endpoint, arguably better), and idempotency keys are undocumented for write endpoints.
What to change
Prioritized by impact on discoverability. You (or your docs platform) deploy these — Discry never touches your API.
- 01Add an `llms-full.txt` (or link a single per-page `index.md` bundle) so agents can pull the whole corpus in one fetch instead of crawling 1,000+ sitemap URLs.
- 02Publish a `.well-known/mcp.json` that points to the existing hosted docs MCP server (`developers.llamaindex.ai/mcp`) so registry crawlers and agents can auto-discover it via the standard path.
- 03Document idempotency support (idempotency keys) for write endpoints such as parse/upload, so agents can safely retry after timeouts without duplicating jobs.
- 04Surface the OpenAPI spec link inside llms.txt and the docs navigation — it currently lives only on the API host (api.cloud.llamaindex.ai/api/openapi.json), so an agent has to guess the path.
Execution coverage · INFORMATIONAL, UNSCORED
Whether an agent can actually complete a call and recover from errors is the deeper Audit layer — documented here, but not part of the Discry Score.
Execution characteristics are thoroughly documented: Bearer API-key auth (with region- and project-scoping notes), machine-parseable JSON errors backed by a dedicated Troubleshooting & Error Codes reference, explicit per-endpoint rate limits (QPS tables, free-tier 20 rpm, 429 handling), and a limitations page (512MB file cap, 64KB/page text, timeout math). Idempotency keys are not documented.