MCP.so
Sign In
T

Typebot Mcp Server

@osdeibi

About Typebot Mcp Server

A small MCP server that exposes Typebot’s REST API as callable tools in Claude Desktop (via STDIO).

Basic information

Category

Other

Transports

stdio

Publisher

osdeibi

Submitted by

Osdeibi Acurero

Config

Add this server to your MCP-compatible client using the configuration below.

{
  "mcpServers": {
    "mcp-typebot": {
      "command": "node",
      "args": [
        "path/to/project/dist/index.js"
      ],
      "env": {
        "TYPEBOT_TOKEN": "YOUR_TOKEN_HERE",
        "TYPEBOT_WORKSPACE_ID": "YOUR_WORKSPACE_ID"
      }
    }
  }
}

Tools

No tools detected

We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.

Overview

What is Typebot MCP Server?

Typebot MCP Server is a Model Context Protocol server that gives AI assistants direct access to the Typebot conversational form builder API. It enables managing Typebots — creating, reading, updating, deleting, publishing, unpublishing, retrieving results, and starting chat sessions — all through natural language commands in Claude Desktop or compatible MCP clients. It is aimed at developers and NoCode builders who want to control their Typebot workspace without leaving their AI interface.

How to use Typebot MCP Server?

Install with git clone, npm install, and npm run build. Configure a valid Typebot API token and workspace ID. Use Claude Desktop connected to the local MCP server, then invoke any tool like createBot, listBots, getBot, updateBot, deleteBot, publishBot, unpublishBot, listResults, or startChat.

Key features of Typebot MCP Server

  • Create new Typebots in a workspace
  • List all Typebots in a workspace
  • Fetch a single Typebot by its ID
  • Patch an existing Typebot (rename, etc.)
  • Delete a Typebot by its ID
  • Publish or unpublish a Typebot
  • Retrieve conversation results from a Typebot
  • Start a new chat session with a Typebot

Use cases of Typebot MCP Server

  • Build and iterate on conversational forms directly from an AI assistant
  • Automate Typebot workspace management without leaving the chat interface
  • Quickly fetch results from published Typebots for analysis or reporting
  • Start and manage chat sessions with Typebots during development

FAQ from Typebot MCP Server

How do I configure the server?

You need a valid Typebot API token and workspace ID set in the environment. The README does not specify exact environment variable names, but both are required at runtime.

What are the runtime requirements?

Node.js 18+ is required. The server is built with Node.js and the MCP SDK.

Where does my data live?

Typebot data lives entirely on Typebot’s cloud infrastructure. The MCP server acts as a bridge and does not store any data locally beyond the MCP session.

Does the server support authentication?

The server uses a Typebot API token for authorization. The README does not mention any additional authentication layer for the MCP transport itself.

What is the transport mechanism?

The server communicates via the Model Context Protocol (MCP) with Claude Desktop. The README does not specify whether it uses stdio or HTTP transport.

Comments

More Other MCP servers