create_story
Generate and publish new Storyblok stories with customizable fields, including content, metadata, and publishing options, using the Storyblok MCP Server tool.
Instructions
Creates a new Storyblok story.
Supports all documented fields including publishing.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | ||
default_root | No | ||
disable_fe_editor | No | ||
group_id | No | ||
is_folder | No | ||
is_startpage | No | ||
meta_data | No | ||
name | Yes | ||
parent_id | No | ||
pinned | No | ||
position | No | ||
publish | No | ||
release_id | No | ||
slug | Yes | ||
sort_by_date | No | ||
translated_slugs_attributes | No |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"additionalProperties": true,
"title": "Content",
"type": "object"
},
"default_root": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Default Root"
},
"disable_fe_editor": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Disable Fe Editor"
},
"group_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Group Id"
},
"is_folder": {
"default": false,
"title": "Is Folder",
"type": "boolean"
},
"is_startpage": {
"default": false,
"title": "Is Startpage",
"type": "boolean"
},
"meta_data": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Meta Data"
},
"name": {
"title": "Name",
"type": "string"
},
"parent_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Parent Id"
},
"pinned": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Pinned"
},
"position": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Position"
},
"publish": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": false,
"title": "Publish"
},
"release_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Release Id"
},
"slug": {
"title": "Slug",
"type": "string"
},
"sort_by_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Sort By Date"
},
"translated_slugs_attributes": {
"anyOf": [
{
"items": {
"additionalProperties": true,
"type": "object"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Translated Slugs Attributes"
}
},
"required": [
"name",
"slug",
"content"
],
"title": "create_storyArguments",
"type": "object"
}