Back to Apps
S
Storyblok MCP Server
by zerdos
Full Storyblok CMS control via MCP — manage stories, assets, components, releases, and tags through Claude or any MCP client.
1 stars
0 views
Works in:claude
Exposes:Tools
What it does
Connects your AI assistant directly to Storyblok's Management and Content Delivery APIs, giving it full control over your headless CMS. You can create, update, publish, and delete stories; manage assets and folders; define component schemas; schedule releases; and search content — all through natural language.
Tools
ping— Health check for the server connectionfetch-stories— List stories with filtering optionsget-story— Retrieve a specific story by ID or slugcreate-story— Create new content entriesupdate-story— Modify existing storiesdelete-story— Remove storiespublish-story/unpublish-story— Control publishing stateget-story-versions/restore-story— Version history and restorefetch-tags/create-tag/delete-tag— Tag managementcreate-tag-and-add-to-story— Create and assign in one stepfetch-releases/create-release/publish-release/delete-release— Scheduled publishing workflowsadd-story-to-release— Queue content into a releasefetch-assets/get-asset/delete-asset— Asset library managementinit-asset-upload/complete-asset-upload— Two-step upload workflowfetch-asset-folders/create-asset-folder/update-asset-folder/delete-asset-folder— Asset organisationfetch-components/get-component/create-component/update-component/delete-component— Block schema managementsearch-stories/get-story-by-slug— Advanced content discoveryget-space/fetch-folders/fetch-datasources— Space-level operations
Installation
Requires three environment variables: STORYBLOK_SPACE_ID, STORYBLOK_MANAGEMENT_TOKEN, and STORYBLOK_DEFAULT_PUBLIC_TOKEN.
// claude_desktop_config.json
{
"mcpServers": {
"storyblok": {
"command": "node",
"args": ["/path/to/mcp-storyblok-server/build/index.js"],
"env": {
"STORYBLOK_SPACE_ID": "your_space_id",
"STORYBLOK_MANAGEMENT_TOKEN": "your_management_token",
"STORYBLOK_DEFAULT_PUBLIC_TOKEN": "your_public_token"
}
}
}
}
Build first with yarn install && yarn build.
Supported hosts
No specific host is confirmed in the README beyond general MCP client compatibility.
Quick install
git clone https://github.com/zerdos/mcp-storyblok-server.git && cd mcp-storyblok-server && yarn install && yarn build