ably.io is Good to agents.
Discry independently scored how well an AI agent can discover and understand the ably.io 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 · 62/100Comprehension
55% of score · 91/100What we found
- Every documentation page ships a parallel .md version (e.g. ably.com/docs/pub-sub.md) and llms.txt links straight to them — an agent can read the entire platform's docs as clean markdown without HTML parsing.
- llms.txt exists and is genuinely API-focused with ~35 structured, described sections, but at ~445KB it is roughly 10x the size an agent can comfortably load as an index — right-sizing it would turn a good signal into a great one.
- An agent hunting for a machine-readable spec hits a dead end: the ably/open-specs GitHub repo declares itself deprecated 'in favor of the docs repository' (Aug 2024), and no OpenAPI spec is discoverable at any ably.com URL.
- There is no Ably presence in the MCP ecosystem — no server listed on Glama/Smithery/PulseMCP and no .well-known/mcp.json — so agents get documentation but no ready-made tools.
- Comprehension quality is excellent: endpoint docs lead with method + URL + purpose, the pub/sub guide shows an end-to-end connect→subscribe→publish workflow in 12 languages, and a dedicated limits page states concrete per-plan numbers.
What to change
Prioritized by impact on discoverability. You (or your docs platform) deploy these — Discry never touches your API.
- 01Publish a current OpenAPI spec at a stable ably.com URL (e.g. ably.com/openapi.json) and link it from the REST API reference; redirect or clearly supersede the deprecated ably/open-specs files.
- 02Slim llms.txt to under 50KB (or split it per product: Pub/Sub, Chat, Spaces, LiveObjects) and add an llms-full.txt for agents that want the full corpus in one fetch.
- 03Ship an official Ably MCP server and list it on Glama, Smithery, and PulseMCP; add .well-known/mcp.json so agents can discover it programmatically.
- 04Add AGENTS.md to the primary SDK repos (ably-js first) with API-usage context for coding agents — the existing ably-cli AGENTS.md only covers contributor conventions.
- 05Extend the errors page so the top API errors (401 token expiry, 429 rate limit, 40160 capability mismatch) carry explicit recovery steps, matching the quality of the existing SSL troubleshooting guidance.
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 unusually well documented: a structured ErrorInfo object (code, statusCode, cause, nonfatal, href) is specified, per-plan rate limits carry concrete numbers, history endpoints document paginated results, and idempotent REST publishing is explicitly supported.