$HEADLESS SYSTEMS
03 / Scorecard / Content Management

ButterCMS

C
Headless Index
54/100
JAIRF
N/A
Verified
AUG 20, 2026
Methodology v1 · JAIRF v1.0.0

Powered by JAIRF v1.0.0 by Jentic · open methodology at /the-headless-index/methodology

ButterCMS earns Band C in the Content Management category of The Headless Index, with a thesis-fit score of 54/100. Its strongest dimension is API-first design intent (16/20); its weakest scored dimension is MCP and agent posture (8/20). No public OpenAPI specification was found when ButterCMS was scored, which limits how far an agent can go without human integration work.

Editorial verdict
ButterCMS is partially headless and partly UI-led. The Headless Index thesis-fit score of 54/100 puts it mid-table on the index, and JAIRF is recorded as N/A for this vendor because no public OpenAPI specification was reachable for the open-source scorer. In practice, vendors at this tier are partly machine-consumable: the core flows are reachable through code but several adjacent surfaces still expect a human at a dashboard, and the rest of this verdict explains where ButterCMS lands inside that pattern. On the API surface, the question is whether the API is the product or a layer beneath the dashboard. Butter is the rare CMS where the dashboard is genuinely optional: api.buttercms.com/v2 carries a Read API and a Write API with bulk create, update and delete. Ten first-party clients are maintained on GitHub, from buttercms-js (164 stars) through buttercms-go, buttercms-dart, buttercms-kotlin and buttercms-swift. No GraphQL, and the auth model is two flat tokens. An agent can drive parts of this product, but not all of it: integrators should plan for human-in-the-loop checkpoints where the headless surface stops short. On headless operability: Content operations map cleanly to HTTP, including bulk migrations through the Write API (buttercms.com/docs/build-your-app/content-migration/import-data-using-write-api). Everything above content does not: Page Types, Collection schemas, webhook endpoints, API tokens, users and multi-site are dashboard-only. There is no CLI, no Terraform provider and no self-host option, so an agent can fill a content model it cannot create.[1] On the MCP and agent-integration axis, which is the fastest-moving criterion in the index: The only MCP endpoint Butter runs is the docs search server generated by its Mintlify site, which identifies itself as ButterCMS Docs on POST to buttercms.com/docs/mcp. It answers questions about prose; it cannot publish a page. No content MCP server exists under the vendor org (github.com/ButterCMS), and no agent toolkit is published on npm.[2] Event posture closes the loop: an agent that cannot react to state changes is reduced to polling. The catalogue is clear enough: page.published, page.draft, page.unpublished, page.delete, post.published, post.delete plus collection and media variants, each with a documented payload. Delivery is where it falls down. Butter attempts each event once with a five second timeout and no retries (buttercms.com/docs/build-your-app/webhooks-events/retry-logic-error-handling), and authenticity rests on a shared secret in a custom header, not a signature. Net assessment: integrators can build agent flows against ButterCMS, but the rough edge to plan around is MCP posture[3]. Expect to wrap missing pieces in bespoke glue or accept human-in-the-loop checkpoints. Workable but requires scaffolding.
Verdict by Headless Index pipeline (auto)
// AI-drafted from the evidence layer. Editorial review pending.
Scores

Scorecard detail

Headless Index · 5 sub-criteria
API-first design intent16/20
scored

Butter is the rare CMS where the dashboard is genuinely optional: api.buttercms.com/v2 carries a Read API and a Write API with bulk create, update and delete. Ten first-party clients are maintained on GitHub, from buttercms-js (164 stars) through buttercms-go, buttercms-dart, buttercms-kotlin and buttercms-swift. No GraphQL, and the auth model is two flat tokens.

signals (5)
  • +AI review appliedReviewer: Editorial review on 2026-08-19
  • OpenAPI specNot found across 17 probe paths
  • GraphQL endpointNot discovered (5 probes; project-scoped endpoints require a real project ID)
  • +SDKs maintained5 (java, javascript, kotlin, python, swift); top by stars: ButterCMS/buttercms-java (1 stars)
  • npm weekly downloadsNo published npm package detected for the JS/TS SDKs
cite (1)
  • ai_review_browser.auth@2026-08-19
Headless operation10/20
scored

Content operations map cleanly to HTTP, including bulk migrations through the Write API (buttercms.com/docs/build-your-app/content-migration/import-data-using-write-api). Everything above content does not: Page Types, Collection schemas, webhook endpoints, API tokens, users and multi-site are dashboard-only. There is no CLI, no Terraform provider and no self-host option, so an agent can fill a content model it cannot create.

signals (9)
  • +AI review appliedReviewer: Editorial review on 2026-08-19
  • API operations exposedNo OpenAPI spec; operations count unknown
  • ·Docs pages crawled0 pages (crawler: none)
  • ·Auth schemes documentedAuth documentation page not reached by crawler
  • ·Setup / quickstart docsNot reached by crawler
  • ·Billing docsNot reached by crawler
  • ·Teams / org docsNot reached by crawler
  • ·CLI docsNot reached by crawler
  • ·Schema / data model docsNot reached by crawler
cite (1)
  • ai_review_browser.topics_found@2026-08-19
MCP & agent posture8/20
scored

The only MCP endpoint Butter runs is the docs search server generated by its Mintlify site, which identifies itself as ButterCMS Docs on POST to buttercms.com/docs/mcp. It answers questions about prose; it cannot publish a page. No content MCP server exists under the vendor org (github.com/ButterCMS), and no agent toolkit is published on npm.

signals (4)
  • +AI review appliedReviewer: Editorial review on 2026-08-19
  • Official MCP serverNone found in vendor's GitHub org or the official MCP registry
  • Community MCP serversNone found
  • +Agent-friendly SDKs1 TS/JS SDKs available; top: ButterCMS/enable-voice-search-using-search-api
cite (1)
  • github.sdks@2026-08-19
Schema observability10/20
scored

Butter documents well and specifies poorly. Every docs page is fetchable as Markdown and indexed for machines (buttercms.com/docs/llms.txt), which is more than most peers offer, but there is no OpenAPI document anywhere and no GraphQL to introspect. An agent building a client cold has to parse English endpoint tables rather than a typed contract.

signals (3)
  • +AI review appliedReviewer: Editorial review on 2026-08-19
  • OpenAPINot discovered across 17 standard probe paths
  • GraphQL introspectionNo GraphQL endpoint discovered (5 probes; some vendors use project-scoped endpoints that require a real project handle)
cite (1)
  • ai_review_browser.pages_fetched@2026-08-19
Webhooks & events10/20
scored

The catalogue is clear enough: page.published, page.draft, page.unpublished, page.delete, post.published, post.delete plus collection and media variants, each with a documented payload. Delivery is where it falls down. Butter attempts each event once with a five second timeout and no retries (buttercms.com/docs/build-your-app/webhooks-events/retry-logic-error-handling), and authenticity rests on a shared secret in a custom header, not a signature.

signals (2)
  • +AI review appliedReviewer: Editorial review on 2026-08-19
  • ·Webhook docs pageNot reached by crawler within budget (0 pages crawled). Cannot confirm whether vendor offers webhooks.
cite (1)
  • ai_review_browser.pages_fetched@2026-08-19
JAIRF · 6 dimensions
JAIRF · N/A

This vendor does not publish a public OpenAPI specification. JAIRF cannot be computed. The Headless Index score and editorial verdict carry the readiness assessment.

No public OpenAPI specification discovered during collection

Powered by JAIRF v1.0.0 by Jentic

Band rationale:C band: scores 40-75 range

04 / Embed

Show ButterCMS's score on your site.

Drop a live badge into your README, footer, or marketing page. It updates automatically when we re-score, and every embed is a dofollow link back here.

FAQ

ButterCMS and agent readiness

Is ButterCMS agent-ready?
ButterCMS scores Band C on The Headless Index. Its JAIRF rating is not available because no machine-readable spec was scored. Its strongest area for agent use is API-first design intent; its weakest is MCP and agent posture.
Does ButterCMS publish an OpenAPI spec?
No published OpenAPI specification was found when ButterCMS was scored. That caps its JAIRF dimensions and forces agents to rely on documentation or reverse engineering to operate it.
What is ButterCMS's Headless Index score?
ButterCMS scores 54/100 on the Headless Index thesis-fit rubric and sits in Band C in the Content Management category. The score weighs API-first design, headless operation, MCP and agent posture, schema observability, and webhooks.