Now booking enterprise content platform builds for 2026. Contact us

All articles Practice 9 min read

Why "AI-ready CMS" is mostly marketing and what actually matters

Every CMS vendor claims to be AI-ready. Most are marketing a Generate button. Here is what AI readiness actually requires and how to test for it.


Every major CMS vendor markets their product as AI-ready. Contentful, Sanity, WordPress, and Adobe Experience Cloud all market AI features. The phrase “AI-ready CMS” appears in homepage headlines, pricing pages, comparison matrices, and sales decks. It has become as meaningful as “enterprise-grade”: a signal that the vendor is aware AI exists, with no implication that the product can support what enterprise AI actually requires.

This is worth naming clearly. Selecting a CMS on the basis of its AI feature set is a different decision from selecting one on the basis of its AI readiness. The two criteria frequently point to different products.

What vendors mean by “AI-ready”

Walk through a vendor’s AI feature list and you will find three categories of claims. Understanding what each category actually provides is the test for whether any given claim translates to genuine AI readiness.

Category 1: AI-assisted content creation

These are features that use AI to help editors write, tag, translate, or summarise content within the CMS interface: auto-generated metadata, suggested tags from image analysis, AI-powered translation, content tone adjustment, blog post drafts from a brief.

These features are real and useful for the editorial teams that use them. AI readiness is an architectural question, and these features do not change the architecture. An editor who uses AI to write a product description faster does not produce a product description that is more reliably retrievable by an AI agent. The content may be better written. It is stored the same way, with the same structural characteristics, and exposed through the same API, as content written without AI assistance.

AI-assisted creation is a productivity tool for human editors. Whether the resulting content is reliably retrievable by AI systems depends on the CMS architecture, which the writing assistant does not change.

Category 2: AI-powered search and discovery

These features improve how editors and users find content within the CMS or on the organisation’s website: semantic search that understands intent rather than keyword matches, personalised content recommendations, vector-based asset discovery that finds images by concept rather than filename.

These are useful capabilities. They describe the CMS as an AI consumer: a platform that uses AI to serve its users better. A CMS with vector-based search has embedded an AI feature, it has not necessarily become a platform that AI systems can reliably retrieve content from.

The distinction is between the CMS as an AI consumer and the CMS as an AI enabler, providing the structured data AI systems can retrieve, process, and act on. Vendor marketing conflates the two, because the first is much easier to build and market than the second.

Category 3: AI integration connectors

These are API connections to external AI services: connectors to OpenAI, Anthropic, or other LLM providers; integration with AI translation services; hooks into AI analytics platforms.

A connector to an LLM provider is a mechanism for sending CMS content to an AI service for processing. It says nothing about the structure or governance of what gets sent. A CMS that connects to OpenAI but stores content in unstructured HTML blobs sends unstructured HTML blobs to OpenAI. The AI service receives them and does what it can with them, producing less reliable outputs than it would from structured, typed content.

What AI readiness actually requires

The genuine AI readiness criteria are architectural. They cannot be bolted on as a plugin or activated through a settings menu. They require that the CMS was designed from the beginning to treat content as structured data with stable identifiers, accessible through a machine-readable API, with governance signals that allow AI systems to distinguish trustworthy content from stale or unauthorised content.

For the purpose of evaluating vendor claims, five tests are sufficient.

Test 1: Does the API return typed field values?

The test is whether the API response contains typed field values: the product name as a string, the publication date as a date, the category as a reference to a taxonomy entry. If the response consists primarily of an HTML blob with embedded content, the CMS is not architecturally AI-ready, regardless of what AI features it includes.

Most modern headless CMSes pass this test. Legacy CMSes typically do not, and some nominally headless CMSes that expose rendered output rather than raw field values fail it as well.

Test 2: Are content identifiers stable across updates and reorganisations?

If a content item is updated or moved, does the identifier used to reference it change? A CMS where URLs or identifiers shift when content is reorganised forces AI systems to re-index and re-reference content after every reorganisation. In practice this breaks audit trails, invalidates agent action logs, and causes AI systems to serve content that they believe is current but is not.

Test 3: Does the API expose governance signals?

Can an external system query the publication status, approval status, locale scope, and version history of a content item? Most CMS APIs return content without governance metadata. An AI system retrieving content this way has no basis for distinguishing a published, approved product description from a draft edited yesterday and not yet reviewed. It treats both as current and authoritative.

Test 4: Is the content model defined in code?

A content model defined in code, in TypeScript, JavaScript, or another language that lives in version control, can be audited, reviewed, and deployed through the same CI/CD pipeline as application code. Its changes are tracked, reversible, and visible. A content model defined through a GUI is a configuration stored in the vendor’s database, with whatever version history the vendor’s interface exposes.

For organisations where AI systems will be acting on content, the content model is infrastructure. Infrastructure changes should be auditable, a GUI-defined model that cannot be version-controlled cannot be governed with the same rigour as code.

Test 5: Can the CMS serve multiple surfaces from one content source?

An AI agent does not care which surface a user was on when they asked a question. It needs to retrieve the authoritative content, regardless of whether it originated on the website, the mobile app, the partner portal, or the internal knowledge base. A CMS that serves only one surface, typically the website, lacks the multi-surface content retrieval that agentic systems require.

Why the marketing works

The gap between what “AI-ready” is marketed to mean and what it actually requires persists because most buyers evaluate CMS platforms on a feature checklist rather than on architectural criteria.

Comparison matrices are built for feature counts. They check for AI writing assistant, semantic search, and LLM connectors; they do not check for TypeScript-native content modelling, typed field APIs, or stable identifiers. The vendor who leads with a list of AI capabilities can point to three boxes checked. The vendor who leads with architectural criteria cannot point to a comparison matrix, because comparison matrices are not built around them. The result is that platforms with strong AI marketing frequently rank ahead of more architecturally sound options in CMS evaluations.

MIT Sloan researchers who studied agentic AI deployment found that 80% of their project time was consumed by data engineering, governance, and workflow integration, not model selection or prompt design. The CMS designed from the start to expose structured, governed, machine-readable content is the one that reduces that 80%. Feature counts do not tell you which platform that is.

How Payload fares against these tests

For organisations evaluating Payload specifically, the five tests above produce clear results.

Payload’s content model is defined in TypeScript code, lives in version control, and is deployed through standard CI/CD processes. The model passes Test 4 by design. Collections, fields, and access control rules are auditable artifacts, not vendor-managed configurations.

The Payload REST and GraphQL APIs return typed field values. A product description is a string field in the API response, publication date is a date field and a category is a reference object. The API passes Test 1.

Payload’s Local API, the pattern where Payload runs inside the Next.js application rather than as a separate service, removes the network boundary between content retrieval and content consumption. For AI systems deployed in the same environment, content queries are function calls rather than HTTP requests, with no network latency and no rate limits. This is architecturally favourable for AI workloads, though it applies primarily to organisations where the AI system is deployed in the same application.

Payload’s content identifiers are database-assigned and stable across updates and reorganisations. The API exposes publication status and draft states. Tests 2 and 3 are partially satisfied; full governance signal exposure for locale scope and version history requires configuration at the content model level.

Payload does not market itself as AI-ready with a featured list of AI capabilities. It is a code-first, TypeScript-native headless CMS that passes the architectural tests AI readiness actually requires. The marketing is conservative relative to platforms that lead with AI feature counts; the architecture is more AI-supportive than most of them.

The test you can run today

Before your next CMS evaluation or renewal conversation, run these five tests against your current platform and any platform you are considering.

Pull the API documentation and look for a product or article endpoint. Check whether the response includes typed field values or HTML. Request a sample response and examine whether it contains governance metadata alongside the content fields. Ask whether content identifiers change when content is reorganised. Ask how the content model is defined and whether model changes go through version control.

A vendor whose architecture genuinely supports AI readiness will answer these questions directly and specifically. When a vendor redirects to a feature demo instead of answering a question about API response types, the demo is the answer.

FAQ

  1. What does "AI-ready CMS" typically mean in vendor marketing?

    In most vendor marketing, "AI-ready CMS" refers to features that use AI within the CMS interface: AI-assisted content writing, semantic search, auto-tagging, translation, and connectors to external LLM providers. These features make the CMS an AI consumer, a platform that uses AI to help editors work faster. They are separate from whether the CMS can serve as a reliable content source for AI systems that retrieve, process, and act on content programmatically.

  2. What does AI readiness actually require from a CMS architecture?

    Five criteria: the API returns typed field values rather than rendered HTML; content identifiers are stable across updates and reorganisations; the API exposes governance signals including publication status, approval state, and version history; the content model is defined in code and version-controlled rather than managed through a GUI; and the CMS can serve multiple surfaces from a single content source. These are architectural properties that determine whether an AI system can retrieve and reliably use the content stored in the CMS.

  3. Why does it matter whether the content model is in code or in a GUI?

    A content model in code is a version-controlled artifact. Changes are auditable, reversible, and visible through standard code review processes. A content model in a GUI is a configuration stored in the vendor's database, with whatever history the vendor's interface exposes. For AI systems that depend on the content model to interpret field values, the model is infrastructure, and infrastructure changes should be auditable.

  4. What is the difference between an AI consumer and an AI enabler in the context of CMS?

    An AI consumer uses AI capabilities to improve its own editorial experience: AI-generated metadata, AI-powered search, AI translation. An AI enabler provides structured, governed, machine-readable content that AI systems can retrieve and act on. The CMS as AI enabler is the source for other AI systems. Most CMS vendor marketing describes AI consumer capabilities. AI readiness is an AI enabler property. The two are frequently conflated in marketing but are architecturally distinct.

  5. Can a legacy CMS become AI-ready by adding plugins or connectors?

    Connectors to AI services allow a legacy CMS to send content to AI systems for processing, but they do not change the structure or governance of the content being sent. A legacy CMS that stores product descriptions in HTML blobs and connects to the OpenAI API sends HTML blobs to OpenAI. The content structure is unchanged. Adding a connector does not make the content typed, structured, or governed. Genuine AI readiness requires structural changes to how content is modelled and stored.

  6. How do you evaluate whether a vendor's AI-ready claim is substantive?

    Ask five questions: Does the API return typed field values or HTML? Are content identifiers stable across reorganisations? Does the API expose publication status and version history alongside content? Is the content model defined in code or in a GUI? Can the CMS serve multiple surfaces from a single content source? Vendors whose architecture genuinely supports AI readiness answer these questions directly. When a vendor redirects to a feature demo instead, the marketing has outrun the architecture.

WAYF builds content platforms on Payload, a TypeScript-native, code-first headless CMS that passes the architectural AI readiness tests by design. Book a call for a conversation about how your current or planned CMS architecture performs against these criteria.


Sources


Author

Paul Utr

Co-founder & Co-CEO

Paul has been launching online platforms since his teens, picking up UX and product design by building them. He led the Mailgun redesign at Netguru and was Principal Designer at Ramp Network through its seed-to-Series-B run. At WAYF he leads design and organisational alignment, and watches how language carries through every product we ship.


We're booking content platform
engagements for 2026.

Twenty-five minutes to walk through the work and decide if we're the right team for it. Scoping and a fixed price come after.