update_space
Modify an existing Storyblok space by updating its properties such as name, domain, owner, or environments using the Management API within the Storyblok MCP Server.
Instructions
Updates an existing Storyblok space via the Management API.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ai_translation_disabled | No | ||
billing_address | No | ||
default_root | No | ||
domain | No | ||
duplicatable | No | ||
environments | No | ||
has_pending_tasks | No | ||
name | No | ||
options | No | ||
owner_id | No | ||
parent_id | No | ||
routes | No | ||
searchblok_id | No | ||
space_id | Yes | ||
story_published_hook | No | ||
uniq_domain | No |
Input Schema (JSON Schema)
{
"properties": {
"ai_translation_disabled": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Ai Translation Disabled"
},
"billing_address": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Billing Address"
},
"default_root": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Default Root"
},
"domain": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Domain"
},
"duplicatable": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Duplicatable"
},
"environments": {
"anyOf": [
{
"items": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Environments"
},
"has_pending_tasks": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Has Pending Tasks"
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Name"
},
"options": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Options"
},
"owner_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Owner Id"
},
"parent_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Parent Id"
},
"routes": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Routes"
},
"searchblok_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Searchblok Id"
},
"space_id": {
"title": "Space Id",
"type": "integer"
},
"story_published_hook": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Story Published Hook"
},
"uniq_domain": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Uniq Domain"
}
},
"required": [
"space_id"
],
"title": "update_spaceArguments",
"type": "object"
}