Chatwoot MCP Server
Manages customer conversations, reads and sends messages, and filters conversations by date range, status, assignee, inbox, and labels in Chatwoot.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Chatwoot MCP Serverlist my open conversations"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Chatwoot MCP Server
A Model Context Protocol (MCP) server that connects AI assistants like Claude to your Chatwoot instance. Manage customer conversations, read messages, send replies, and filter by date ranges -- all through natural language.
Features
5 MCP Tools - List, filter, and inspect conversations; read and send messages
Advanced Filtering - Filter conversations by date range, status, assignee, inbox, and labels
Dual Authentication - API token (recommended) or JWT email/password
Type-Safe - Built with TypeScript and OpenAPI-generated types
Dual Output - Markdown (human-readable) and JSON (machine-readable) response formats
Related MCP server: aws-mcp
Tools
Tool | Description |
| List conversations with status, assignee, and inbox filters |
| Get full details for a specific conversation |
| List all messages in a conversation |
| Send a reply or create an internal note |
| Filter by date range, status, assignee, inbox, and labels |
Quick Start
Prerequisites
Node.js >= 18
A Chatwoot account with API access
Install
git clone https://github.com/mohnori/chatwoot-mcp.git
cd chatwoot-mcp
npm install
npm run buildConfigure
Copy the example environment file and fill in your credentials:
cp .env.example .envEdit .env:
CHATWOOT_BASE_URL="https://your-chatwoot-instance.com"
CHATWOOT_API_TOKEN="your_api_token_here"
CHATWOOT_ACCOUNT_ID="your_account_id_here"Getting your API token:
Log in to Chatwoot
Click your avatar → Profile Settings
Scroll to the bottom → copy your Access Token
Getting your account ID:
Your account ID is the number in the URL when you're logged in: app.chatwoot.com/app/accounts/<ID>/...
Run
npm startMCP Configuration
Claude Code
claude mcp add chatwoot \
-e CHATWOOT_BASE_URL="https://your-chatwoot-instance.com" \
-e CHATWOOT_API_TOKEN="your_api_token" \
-e CHATWOOT_ACCOUNT_ID="your_account_id" \
-- node /path/to/chatwoot-mcp/dist/index.jsReplace
/path/to/chatwoot-mcpwith the actual path where you cloned the repository.
Claude Desktop
Add to your Claude Desktop configuration file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"chatwoot": {
"command": "node",
"args": ["/path/to/chatwoot-mcp/dist/index.js"],
"env": {
"CHATWOOT_BASE_URL": "https://your-chatwoot-instance.com",
"CHATWOOT_API_TOKEN": "your_api_token_here",
"CHATWOOT_ACCOUNT_ID": "your_account_id_here"
}
}
}
}Replace
/path/to/chatwoot-mcpwith the actual path where you cloned the repository. On Windows, use double backslashes:"C:\\Users\\you\\chatwoot-mcp\\dist\\index.js"
Environment Variables
Variable | Required | Description |
| Yes | Your Chatwoot instance URL (no trailing slash) |
| Yes | Your Chatwoot account ID (numeric) |
| Yes* | API access token (recommended method) |
| Yes* | Email for JWT auth (alternative method) |
| No | Password for JWT auth (needed for token refresh) |
*Either CHATWOOT_API_TOKEN or CHATWOOT_EMAIL is required.
Tools Reference
chatwoot_list_conversations
List conversations from an account with optional filters.
Parameter | Type | Required | Default | Description |
| string | No |
|
|
| string | No | - |
|
| number | No | - | Filter by inbox ID |
| number | No |
| Page number |
| string | No |
|
|
chatwoot_get_conversation
Get detailed information about a specific conversation.
Parameter | Type | Required | Description |
| number | Yes | Conversation ID |
| string | No |
|
chatwoot_list_messages
List all messages in a conversation.
Parameter | Type | Required | Description |
| number | Yes | Conversation ID |
| string | No |
|
chatwoot_create_message
Send a message or create an internal note in a conversation.
Parameter | Type | Required | Default | Description |
| number | Yes | - | Conversation ID |
| string | Yes | - | Message content |
| string | No |
|
|
| boolean | No |
|
|
chatwoot_filter_conversations
Filter conversations using advanced criteria. Uses Chatwoot's POST filter API with support for date ranges, status, assignee, inbox, and labels. Returns 25 results per page.
Parameter | Type | Required | Description |
| string | No | Created after this date (YYYY-MM-DD) |
| string | No | Created before this date (YYYY-MM-DD) |
| string | No | Last activity after this date (YYYY-MM-DD) |
| string | No | Last activity before this date (YYYY-MM-DD) |
| string | No |
|
| number | No | Filter by assignee agent ID |
| number | No | Filter by inbox ID |
| string | No | Filter by label name |
| number | No | Page number (default: 1) |
| string | No |
|
Date filter behavior: Date boundaries are exclusive. To get conversations for a single day like Feb 21, use date_from="2026-02-20" and date_to="2026-02-22".
Example Queries
Once connected, you can ask Claude things like:
"Show me all open conversations"
"What are the details of conversation #123?"
"List all messages in conversation #456"
"Send a reply to conversation #789 saying 'Thank you for contacting us!'"
"Add an internal note to conversation #101 about the customer's issue"
"Find all conversations created on Feb 21"
"Show me resolved conversations from last week with the label 'urgent'"
Development
Project Structure
chatwoot-mcp/
├── src/
│ ├── index.ts # MCP server entry point & tool registration
│ ├── constants.ts # Shared constants and enums
│ ├── chatwoot-types.ts # Auto-generated OpenAPI types
│ ├── services/
│ │ ├── chatwoot-client.ts # API client with auth middleware
│ │ ├── chatwoot-auth.ts # JWT authentication
│ │ ├── token-cache.ts # JWT token persistence
│ │ └── error-handler.ts # Error formatting utilities
│ ├── schemas/
│ │ └── common.ts # Shared Zod validation schemas
│ └── tools/
│ ├── conversations.ts # List & get conversation tools
│ ├── messages.ts # List & create message tools
│ └── filter-conversations.ts # Advanced conversation filtering
├── test/
│ ├── chatwoot-client.test.ts # Integration tests
│ ├── setup.ts # Test environment setup
│ └── unit/ # Unit tests (mocked, no API calls)
│ ├── error-handler.test.ts
│ ├── build-filter-payload.test.ts
│ ├── conversations.test.ts
│ ├── messages.test.ts
│ ├── filter-conversations.test.ts
│ ├── schemas.test.ts
│ ├── chatwoot-auth.test.ts
│ └── token-cache.test.ts
├── .env.example # Environment variable template
├── package.json
├── tsconfig.json
└── vitest.config.tsScripts
Command | Description |
| Compile TypeScript to |
| Run the compiled server |
| Run in development mode with auto-reload |
| Run integration tests |
| Run tests in watch mode |
| Remove the |
| Regenerate OpenAPI types from swagger.json |
Regenerating Types
If the Chatwoot API changes, download the latest OpenAPI spec and regenerate types:
Download
swagger.jsonfrom your Chatwoot instance at/swagger/v1/swagger.jsonPlace it in the project root
Run
npm run generate-types
Running Tests
Unit tests run without any credentials. Integration tests require a real Chatwoot instance:
# Unit tests only (no credentials needed)
npm test -- test/unit/
# All tests (requires .env with valid credentials)
cp .env.example .env
# Edit .env with your credentials
npm testTroubleshooting
API Token Returns 401
If using a self-hosted Chatwoot with nginx, add this to your nginx config:
server {
underscores_in_headers on; # Required for api_access_token header
}JWT Tokens Expire
JWT tokens expire (typically after 2 weeks). Keep CHATWOOT_PASSWORD in your .env for automatic refresh, or switch to API token authentication.
MCP Connection Errors
If you see JSON parsing errors when connecting, ensure you are using node dist/index.js directly (not npx). Some npm packages output debug information to stdout during installation, which corrupts the MCP stdio protocol.
Tech Stack
@modelcontextprotocol/sdk - MCP server framework
openapi-fetch - Type-safe API client
openapi-typescript - OpenAPI type generation
Zod - Runtime schema validation
Vitest - Test framework
Attribution
Originally created by Hugo Blanc.
License
Contributing
Contributions are welcome! Some ideas for additional tools:
Contact management (create, update, search)
Team and agent operations
Inbox configuration
Labels and custom attributes
Reports and analytics
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mohnori/chatwoot-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server