createBot
Generate a new Typebot chatbot by specifying a name and optional description. Ideal for quickly setting up chatbot workflows using the MCP-Typebot server’s JSON interface.
Instructions
Crea un nuevo Typebot. Requiere “name”, opcional “description”
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | ||
name | Yes | ||
workspaceId | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"description": {
"type": "string"
},
"name": {
"minLength": 1,
"type": "string"
},
"workspaceId": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}