- Typebot Mcp Server
Typebot Mcp Server
Prerequisites
- Node.js 18+
- A valid Typebot API token and workspace ID
- Claude Desktop connected to your local MCP server
Installation
git clone <repo-url>
cd mcp-typebot
npm install
npm run build
Features
-
createBot
Create a new Typebot in your workspace.
Required:name
Optional:workspaceId,description -
listBots
List all Typebots in your workspace.
Optional:workspaceId -
getBot
Fetch a Typebot by its ID.
Required:botId -
updateBot
Patch an existing Typebot (e.g. rename).
Required:botId,typebot(object with fields to change)
Optional:overwrite -
deleteBot
Delete a Typebot by its ID.
Required:botId -
publishBot / unpublishBot
Toggle a Typebot’s published state.
Required:botId -
listResults
Retrieve conversation results for a Typebot.
Required:botId
Optional:limit,cursor,timeFilter,timeZone -
startChat
Begin a new chat session with a Typebot.
Required:botId
Optional:chat.context
Server Config
{
"mcpServers": {
"mcp-typebot": {
"command": "node",
"args": [
"path/to/project/dist/index.js"
],
"env": {
"TYPEBOT_TOKEN": "YOUR_TOKEN_HERE",
"TYPEBOT_WORKSPACE_ID": "YOUR_WORKSPACE_ID"
}
}
}
}