startChat
Initiate a chat session with a Typebot using a specific botId, optionally include chat context for personalized interactions via the MCP-Typebot server.
Instructions
Inicia un chat con un Typebot. Requiere botId, opcional chat.context
Input Schema
Name | Required | Description | Default |
---|---|---|---|
botId | Yes | ||
chat | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"botId": {
"minLength": 1,
"type": "string"
},
"chat": {
"additionalProperties": false,
"properties": {
"context": {
"additionalProperties": {},
"type": "object"
}
},
"type": "object"
}
},
"required": [
"botId"
],
"type": "object"
}