data
Storyblok MCP, CLI, and Lua Integration for AI Agents
Storyblok integration docs for AI agents: MCP gateway setup, Storyblok CLI commands, Lua API reference, credentials, and function schemas.
7 functions 4 read 3 write Bearer token auth
Storyblok 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
storyblok- route_slug
storyblok- package
storyblok- auth_strategy
bearer_tokenBearer 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. Storyblok CLIHeadless setup and direct function calls. Storyblok 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.
Storyblok MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Storyblok.
Claude Code Storyblok MCP setup for Claude Code. Cursor Storyblok MCP setup for Cursor. Codex Storyblok MCP setup for Codex. OpenAI Agents Storyblok MCP setup for OpenAI Agents SDK. Claude Agent SDK Storyblok MCP setup for Claude Agent SDK. Vercel AI SDK Storyblok MCP setup for Vercel AI SDK. LangChain Storyblok MCP setup for LangChain. LangGraph Storyblok MCP setup for LangGraph. CrewAI Storyblok MCP setup for CrewAI. MCP clients Storyblok MCP setup for Generic MCP Clients.
Storyblok CLI Matrix
Use these pages for direct Storyblok CLI workflows in scripts, CI, cron, and agent wrappers.
CI Storyblok CLI for CI. Cron Jobs Storyblok CLI for cron jobs. Shell Scripts Storyblok CLI for shell scripts. Headless Automation Storyblok CLI for headless automation. Coding Agents Storyblok CLI for coding agents.
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
storyblok.storyblok_list_stories | Read read | 4 | List stories in the configured Storyblok space. Supports pagination, search, and sorting. |
storyblok.storyblok_get_story | Read read | 1 | Retrieve a single Storyblok story by its numeric ID, including full content. |
storyblok.storyblok_create_story | Write write | 6 | Create a new story in the configured Storyblok space. Requires a name, slug, and content object. |
storyblok.storyblok_update_story | Write write | 5 | Update an existing Storyblok story. Provide the story ID and the fields to update (e.g., content, name, slug). |
storyblok.storyblok_delete_story | Write write | 1 | Delete a story from the configured Storyblok space by its numeric ID. This action is irreversible. |
storyblok.storyblok_list_components | Read read | 0 | List all component schemas defined in the configured Storyblok space. Useful for understanding available content structures. |
storyblok.storyblok_get_current_user | Read read | 0 | List all available Storyblok spaces for the authenticated user. Useful as a health check or to discover space IDs. |