other
Strapi MCP, CLI, and Lua Integration for AI Agents
Strapi integration docs for AI agents: MCP gateway setup, Strapi CLI commands, Lua API reference, credentials, and function schemas.
7 functions 4 read 3 write API token auth
Strapi for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Machine-Readable Metadata
- integration_slug
strapi- route_slug
strapi- package
strapi- auth_strategy
api_tokenAPI token- cli_setup_supported
true- cli_runtime_supported
true- mcp_gateway_supported
true- lua_supported
true- supports_multi_account
true
Quick Links
Lua APIAgent-facing namespace and function reference. Strapi CLIHeadless setup and direct function calls. Strapi MCPMCP gateway setup for external clients. Submit feedbackReport missing tools, auth problems, wrong docs, or runtime issues. ContributeAdd tools or improve metadata in the integrations repo.
Strapi MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Strapi.
Claude Code Strapi MCP setup for Claude Code. Cursor Strapi MCP setup for Cursor. Codex Strapi MCP setup for Codex. OpenAI Agents Strapi MCP setup for OpenAI Agents SDK. Claude Agent SDK Strapi MCP setup for Claude Agent SDK. Vercel AI SDK Strapi MCP setup for Vercel AI SDK. LangChain Strapi MCP setup for LangChain. LangGraph Strapi MCP setup for LangGraph. CrewAI Strapi MCP setup for CrewAI. MCP clients Strapi MCP setup for Generic MCP Clients.
Strapi CLI Matrix
Use these pages for direct Strapi CLI workflows in scripts, CI, cron, and agent wrappers.
CI Strapi CLI for CI. Cron Jobs Strapi CLI for cron jobs. Shell Scripts Strapi CLI for shell scripts. Headless Automation Strapi CLI for headless automation. Coding Agents Strapi CLI for coding agents.
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
strapi.strapi_list_entries | Read read | 5 | List entries for a content type in Strapi. Supports pagination, sorting, and field population (relations, media, components). |
strapi.strapi_get_entry | Read read | 3 | Get a single entry from Strapi by content type and ID. Supports population of relations and media. |
strapi.strapi_create_entry | Write write | 2 | Create a new entry in Strapi for a given content type. The data is automatically wrapped in the required "data" envelope. |
strapi.strapi_update_entry | Write write | 3 | Update an existing entry in Strapi by content type and ID. The data is automatically wrapped in the required "data" envelope. |
strapi.strapi_delete_entry | Write write | 2 | Delete an entry from Strapi by content type and ID. This action is permanent. |
strapi.strapi_list_content_types | Read read | 0 | List all content types defined in the Strapi Content-Type Builder. Returns API IDs, display names, and schema information. |
strapi.strapi_get_current_user | Read read | 0 | Get the currently authenticated Strapi user. Useful for verifying the API token and checking permissions. |