GoCardless is Good to agents.
Discry independently scored how well an AI agent can discover and understand the GoCardless 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 · 71/100Comprehension
55% of score · 87/100What we found
- An agent can self-serve the entire API surface without scraping rendered HTML: GoCardless ships a downloadable OpenAPI spec (openapi-schema-public.json) AND a clean Markdown (.md) version of every documentation page, all indexed from a working llms.txt.
- Every quickstart and guide provides copy-pasteable code in six languages (cURL, PHP, Python, Ruby, Java, Node) with realistic values and task-first framing ('Create your first test payment authorisation in 5 minutes') — an agent can lift working calls directly.
- No agent-native discovery assets exist: no AGENTS.md in any gocardless GitHub repo, no llms-full.txt, and no .well-known/mcp.json — a coding or runtime agent gets no purpose-built guidance beyond the human docs.
- The only MCP coverage is a community-built server (jmceleney/gocardless-mcp) listed on Glama; there is no official GoCardless MCP server, so registry-driven agents land on an unofficial integration.
- GoCardless runs two doc conventions in parallel — the Pro payments API (snake_case JSON, structured error types) and the Bank Account Data API (status abbreviations like CR/GC, PascalCase error names like AccessExpiredError) — forcing an agent to context-switch between products.
What to change
Prioritized by impact on discoverability. You (or your docs platform) deploy these — Discry never touches your API.
- 01Publish llms-full.txt by concatenating the core guides and API reference Markdown — you already emit per-page .md, so this is a near-zero-effort fix that clears a failing discovery check.
- 02Add an AGENTS.md to the primary client-library repos (gocardless-pro-*) covering auth, sandbox setup, idempotency, and versioning — a rising standard that is currently a hard fail.
- 03Enrich llms.txt from a flat link dump into described, product-grouped sections (one-line purpose per link) to move llmsTxtQuality from partial to pass.
- 04Ship (or officially endorse) a GoCardless MCP server so registry-driven agents get a maintained integration instead of a community fork.
- 05Consolidate explicit 'what to do' error-recovery steps for the core Pro API — mirroring the strong Bank Account Data statuses page — so agents can self-correct across the whole product, not just one surface.
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.
Strong execution documentation: bearer-token auth (plus partner OAuth), machine-parseable JSON errors with typed codes (e.g. validation_failed), idempotency via the Idempotency-Key header, cursor-based pagination (before/after + limit), and per-endpoint rate limits (e.g. 60 req/min; daily caps on the Bank Account Data API). Documented claims only — live behavior requires a full Discry Audit.