updateBot
Modify an existing Typebot by updating its properties such as name through the MCP-Typebot server, using a structured JSON input with botId and typebot details.
Instructions
Actualiza un Typebot existente (p.ej. cambia nombre)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
botId | Yes | ||
overwrite | No | ||
typebot | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"botId": {
"minLength": 1,
"type": "string"
},
"overwrite": {
"type": "boolean"
},
"typebot": {
"additionalProperties": {},
"type": "object"
}
},
"required": [
"botId",
"typebot"
],
"type": "object"
}