DeepSeek is Needs Work to agents.
Discry independently scored how well an AI agent can discover and understand the DeepSeek 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 · 26/100Comprehension
55% of score · 94/100What we found
- An agent trying to *discover* DeepSeek programmatically finds almost nothing: no robots.txt, no llms.txt, no llms-full.txt, no .well-known/mcp.json, and no official AGENTS.md — the docs site returns 404 for every agent-discovery convention.
- Once an agent reaches the docs, comprehension is excellent: endpoints are task-described, code examples span 9 languages with realistic values, and OpenAI/Anthropic compatibility means agents can reuse existing SDKs with near-zero new learning.
- Error recovery is a standout — the Error Codes page pairs every HTTP status with an explicit cause and fix (e.g. 429 → 'pace your requests'; 402 → top-up link), and the Rate Limit page tells clients how to handle keep-alive lines and 429s.
- No official OpenAPI spec is published for download, but the reference is clearly generated from one (Docusaurus OpenAPI) and first-party SDKs are auto-generated from a spec; community mirrors and OpenAI-compat specs fill the gap partially.
- DeepSeek is well-represented in MCP registries (Glama, PulseMCP, Smithery) — but every listing is community-built, not an official DeepSeek server, so an agent can't rely on a vendor-maintained tool surface.
What to change
Prioritized by impact on discoverability. You (or your docs platform) deploy these — Discry never touches your API.
- 01Publish an llms.txt (and llms-full.txt) at api-docs.deepseek.com covering the core chat-completion flow, thinking mode, tool calls, and error handling — this is the single highest-impact discovery fix and Docusaurus plugins generate it automatically.
- 02Add a robots.txt that explicitly allows AI crawlers (GPTBot, ClaudeBot, CCBot, Google-Extended) — right now the missing file reads as 'no signal' and blocks nothing intentionally but earns no credit.
- 03Expose the OpenAPI spec that already drives the reference docs at a stable public URL (e.g. /openapi.json) so agents and codegen tools can consume it directly instead of scraping the interactive explorer.
- 04Publish an official DeepSeek MCP server and register it on Glama/PulseMCP/Smithery so agents get a vendor-maintained tool surface rather than relying on ~8 community forks of varying quality.
- 05Add an AGENTS.md to the primary deepseek-ai coding repos with setup/usage context for coding agents — a rising standard the org's own agent tooling already generates for downstream users.
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.
Auth is a Bearer API key; DeepSeek also exposes OpenAI- and Anthropic-compatible endpoints, so agents can reuse existing SDKs. HTTP error codes (400/401/402/422/429/500/503) are documented with cause + solution, and concurrency-based rate limits plus a keep-alive mechanism are clearly specified. Pagination and idempotency keys are not documented (not applicable to a stateless chat-completion API).