restore_story
Revert a story to a specified version using the Storyblok MCP Server. Input the story ID and version ID to restore content to a previous state.
Instructions
Restores a story to a specific version.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | ||
version_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"title": "Id",
"type": "string"
},
"version_id": {
"title": "Version Id",
"type": "string"
}
},
"required": [
"id",
"version_id"
],
"title": "restore_storyArguments",
"type": "object"
}