publish_story
Publish a Storyblok story by specifying its ID, with options to include language or release ID for targeted updates, using the Storyblok MCP Server.
Instructions
Publishes a Storyblok story by its ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
lang | No | ||
release_id | No | ||
story_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"lang": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Lang"
},
"release_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Release Id"
},
"story_id": {
"title": "Story Id",
"type": "integer"
}
},
"required": [
"story_id"
],
"title": "publish_storyArguments",
"type": "object"
}