Every team building an AI-native product eventually hits the same wall: the agent framework and the content backend do not speak to each other. The content is in Strapi. The AI surfaces — agents, copilots, coding tools — cannot reach it natively. There is no standard interface between what your editors manage and what your agents can act on.
Starting today, the Strapi MCP server is public in Beta. Install it on a self-hosted Strapi v5 instance, connect any MCP-compatible agent framework, and start wiring your agents against real Strapi content.
This is early access, not a finished line. The teams that wire real agent projects against the Beta are the ones who shape what the production release looks like. Open issues on GitHub or drop feedback into the Strapi Discord or the GitHub discussion to share what you find; all channels are live and watched by the Strapi team.
Strapi v5.47.0 ships a working MCP server covering CRUD, publish, and unpublish operations. The tooling surface will expand over time; the Beta is where you tell us what to prioritize.
What you get:
Getting to a working agent connection takes three steps: enable the server in your Strapi config, create an Admin token, and point your AI client at the endpoint.
The MCP server is built into Strapi. No separate package to install — add mcp: { enabled: true } to config/server.ts:
1export default ({ env }) => ({
2 host: env('HOST', '0.0.0.0'),
3 port: env.int('PORT', 1337),
4 app: {
5 keys: env.array('APP_KEYS'),
6 },
7 mcp: {
8 enabled: true,
9 },
10});
Restart Strapi. The MCP endpoint is live at http://[your-strapi-url]/mcp.
Go to Settings → Admin tokens in your Strapi admin panel, create a new token, and copy the value. The token's permissions determine which content types and operations the MCP server exposes: a read-only token shows only listing and reading tools; a full-access token exposes the complete CRUD and publish surface.
Point your MCP client at the endpoint and pass the Admin token in the Authorization header. The exact config depends on the client.
On Claude Desktop, for example, add the following to your claude_desktop_config.json (macOS: ~/Library/Application Support/Claude/claude_desktop_config.json, Windows: %APPDATA%\Claude\claude_desktop_config.json), replacing YOUR_ADMIN_TOKEN:
1{
2 "mcpServers": {
3 "strapi-mcp": {
4 "command": "npx",
5 "args": [
6 "-y",
7 "mcp-remote",
8 "http://[your-strapi-url]/mcp",
9 "--header",
10 "Authorization: Bearer YOUR_ADMIN_TOKEN"
11 ]
12 }
13 }
14}Your Strapi content types now appear as tools: ask to list entries, follow relations, create drafts, or publish content on the same schema your editors use in admin.
Cursor, Windsurf, and other MCP clients — any client that supports Streamable HTTP transport connects to http://[your-strapi-url]/mcp with an Authorization: Bearer YOUR_ADMIN_TOKEN header. Configuration snippets for Cursor, Windsurf, and Claude Code are in the documentation.
These are the four areas where your signal matters most:
File issues on GitHub. Every report in the Beta window directly shapes the GA release.
Once Beta feedback converges on a stable surface, the Strapi MCP server moves to GA. We're building this with the community: the more teams wiring real agent projects against the Beta, the faster we stabilize what's shipped and decide what to build next. Share your story in the Strapi GitHub discussion or in the Strapi Discord server.