DevKit for Strapi MCP Server
Provides tools for interacting with Strapi projects, enabling AI agents to list content types and components, resolve and validate references, analyze health and dependencies, and plan and apply refactors such as renames and moves by reading the project's real schema.json.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@DevKit for Strapi MCP Serverlist content types in my project"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Why
Strapi runs on magic strings — UIDs like api::article.article, service/controller refs, policy and
middleware names, component UIDs, route handlers. In most editors they have no autocomplete, no
validation, and broken navigation, and a typo fails silently at runtime. AI coding assistants don't
close the gap: an inline completion is a plausible guess, not a lookup — and an agent that greps for
references inherits the same blind spots you do.
DevKit for Strapi reads the real content-types, components, services, controllers, policies, middlewares and routes of every Strapi project in your workspace, and turns those strings into first-class, verified code — in two surfaces that share one engine:
a VS Code extension for humans, and
an MCP server that gives AI agents the same ground truth.
The rule everywhere: guarantee, don't guess. When something can't be proven (a non-literal string, an unverifiable external plugin), DevKit stays silent rather than show a false positive.
Related MCP server: Unity MCP Server
🧩 The VS Code extension
Inside a Strapi project — zero config, no type generation:
Autocomplete — inside a magic string, suggests the real values for the context at your cursor: UIDs, services, controllers, policies, middlewares, components, and a content-type's route actions.
Diagnostics — underlines references that don't exist (with quick fixes that suggest the closest match), and flags Strapi v4 patterns (
entityService,data.attributes) used in a v5 project.Go to definition — Ctrl/Cmd-click a string to jump to the right target: a UID → its
schema.json, a service/controller/policy/middleware → its file, a routehandler→ the controller method, a component → its JSON, aplugin('a').service('b')chain → the plugin's service.Find references & CodeLens — a “N references” lens on every definition, including per-method usages (
strapi.service('x').find()calls and route handlers) the TypeScript server can't see, becausestrapi.service(...)is typedany. A second “N incoming relations” lens onschema.json.Rename (F2) — on an entity or a method: propagates to every call-site and route handler, renames the underlying file/folder, and updates relation
targets. No grep-and-pray.Hover — describes what a string resolves to, with the signature for service methods and usage insights (incoming relations, route handlers, data usages).
🤖 The MCP server — ground truth for AI agents
The same engine, exposed over the Model Context Protocol so coding agents (Claude Code, Copilot agent mode, Cursor, …) query your project's real values instead of grepping for them. 30 stdio tools, in three layers:
Know — read the project's truth
list_projects · list_content_types · list_components · list_artifacts · get_schema · resolve ·
validate_reference · find_references · list_routes
Understand — health & impact analysis
list_unused (dead code) · list_broken_refs · coverage · find_relation_usages · list_refs (glob) ·
dependencies / dependents (the dependency graph, for cut analysis)
Refactor — plan → review → apply
plan_rename_method / plan_rename_entity · plan_move / plan_move_entities · plan_change_relation ·
plan_rename_attribute · create_plugin · extract_to_plugin, then apply_edits / apply_rename.
Every refactor returns a contractual, reviewable plan (text edits + file creates/renames/deletes + content fingerprints). Applying is explicit and safe by construction: the executor is confined to your discovered project root(s) (symlink-resolved — no escape), refuses to silently overwrite, verifies the fingerprints first (a stale plan is rejected, not applied), is best-effort transactional (rolls back on a mid-write failure), and self-verifies afterward (re-checks for broken refs). Garantir, ne pas deviner — applied to writes too.
Set it up
VS Code, Cursor, Windsurf, Antigravity — the server is bundled in the extension and auto-registered with the editor's MCP support. Nothing to configure: install the extension and your agent can use the tools.
Other MCP clients — run
devkit-for-strapi-mcpas a stdio server, passing your project path. It also accepts the workspace folder via the client'srootscapability (so it just works wherever you open it), and a tool (add_project) to register a project on demand.
For Claude Code, Claude Desktop, or any standalone MCP client:
{
"mcpServers": {
"devkit-for-strapi": {
"command": "npx",
"args": ["-y", "devkit-for-strapi-mcp", "/absolute/path/to/your/strapi-project"]
}
}
}Try it
Once it's wired, ask your agent:
"Which content types exist in this project?"
"What uses
api::article.article?""Is
api::article.artclea valid reference?"
It answers from your real schema.json — not from a guess.
Accurate by design
Reads your real schema — answers come from your project's files, not from a model's guess.
Multi-project — discovers every Strapi project in the workspace by content (scanning for
@strapi/strapi), never assuming workspace root = Strapi root. References resolve against the project that owns the edited file; an ambiguous request returns candidates, never a silent choice.Strapi v4 and v5 — the version is detected per project; v4-in-v5 patterns are flagged. Knows the difference between a
collectionTypeand asingleType(their auto-CRUD actions differ) and a schema-only content-type's auto-generated controller.JavaScript & TypeScript — identical behavior for ESM and CommonJS projects (challenged by a JS⇄TS parity test).
Runs everywhere — VS Code and its forks (Cursor, Windsurf, Google Antigravity) via Open VSX and the VS Code Marketplace.
Install
Editor — install from the VS Code Marketplace, or from Open VSX for Cursor / Windsurf / VSCodium (or just search “DevKit for Strapi” in the Extensions view). Open a Strapi project and it works.
AI agent, outside an editor — the MCP server is on npm as
devkit-for-strapi-mcp (and in the official MCP
registry as io.github.PaulRichez/devkit-for-strapi-mcp): npx -y devkit-for-strapi-mcp /path/to/project.
Requirements — a Strapi v4 or v5 project, and VS Code 1.101+ (or a compatible fork). No
configuration, no type generation, no extra setup.
The MCP server needs no separate install in those editors — it ships inside the extension.
Architecture
A pnpm monorepo around one pure engine:
Package | Role |
| The editor-agnostic engine — all Strapi knowledge, reads IO through a |
| The VS Code extension (providers, watcher) — glue, no Strapi logic. |
| The stdio MCP server — a third client of the same engine. |
The same core powers the editor, the MCP server, and the tests — so a fact verified once is true on every surface.
Trademark
Independent, community-built tool — not affiliated with, endorsed by, or sponsored by Strapi SAS. “Strapi” is a trademark of Strapi SAS, used here only to describe compatibility.
License
The core engine and the free editor/MCP wedge are free to use (licensed MIT)
(devkit-for-strapi-core, plus the read/navigation/diagnostics surface of the extension and the
read-only MCP tools).
The Pro write/refactor engine (propagated rename, move/extract, schema edits, plan→apply) is a
separate package that is not included in this repository — the packages/pro here is an
MIT-licensed stub that only preserves the public API so the free tier builds and runs. The real Pro
engine is licensed under PolyForm Shield 1.0.0 and is bundled into the published VS Code
extension and MCP server, so those distributed artifacts are governed by MIT AND PolyForm-Shield-1.0.0. Building from this repository produces the free tier; Pro features return a
"Pro required" upsell. Get Pro: https://devkit-for-strapi.paulrichez.fr/pro/.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseBqualityDmaintenanceProvides LLMs with safe, read-only access to local codebases for searching, reading files, and finding function definitions. All source code remains local, ensuring privacy while enabling AI assistants to explore project structures and functionality.4
- FlicenseBqualityBmaintenanceProvides AI assistants with structured access to Unity project metadata, build settings, and agent documentation directly from the filesystem. It enables querying project details and scene configurations without requiring the Unity Editor to be running.1003982
- Alicense-qualityDmaintenanceProvides AI agents with secure, read-only file system access to analyze and understand project codebases, enabling multi-repository context aggregation and cross-project code tracing.5MIT
- Flicense-qualityDmaintenanceEnables AI agents to explore Salesforce metadata by parsing object and field definitions, reducing hallucination when working with Salesforce repositories.
Related MCP Connectors
Give your AI agent a persistent map of your project's structure, dependencies, and bugs.
Securely search and manage workspace context files for AI agents and teams.
Give your AI assistant access to real Helm chart data. No more hallucinated values.yaml files.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/PaulRichez/devkit-for-strapi'
If you have feedback or need assistance with the MCP directory API, please join our Discord server