Chatwoot MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| CHATWOOT_EMAIL | No | Email for JWT auth (alternative method) | |
| CHATWOOT_BASE_URL | Yes | Your Chatwoot instance URL (no trailing slash) | |
| CHATWOOT_PASSWORD | No | Password for JWT auth (needed for token refresh) | |
| CHATWOOT_API_TOKEN | No | API access token (recommended method) | |
| CHATWOOT_ACCOUNT_ID | Yes | Your Chatwoot account ID (numeric) |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| chatwoot_list_conversationsA | List conversations from a Chatwoot account with filtering options. This tool retrieves conversations from Chatwoot, allowing you to filter by status, assignee, and inbox. Supports pagination for large result sets. Args:
Returns: A list of conversations with details including:
Examples:
|
| chatwoot_get_conversationA | Get detailed information about a specific Chatwoot conversation. This tool retrieves full details for a single conversation including contact info, assignee, labels, and custom attributes. Args:
Returns: Full conversation details including:
Examples:
|
| chatwoot_list_messagesA | List all messages in a Chatwoot conversation. This tool retrieves all messages from a specific conversation, including message content, sender information, timestamps, and attachments. Args:
Returns: List of messages with:
Examples:
|
| chatwoot_create_messageA | Create a new message in a Chatwoot conversation. This tool sends a message in an existing conversation. Can be used for outgoing messages to customers or private internal notes. Args:
Returns: Created message details including ID and confirmation Examples:
|
| chatwoot_filter_conversationsA | Filter conversations using advanced criteria including date ranges, status, assignee, and labels. This tool uses Chatwoot's filter API to find conversations by creation date, last activity date, status, and more. Supports pagination (25 results per page) or auto-pagination to fetch all results at once. IMPORTANT - Date format must be YYYY-MM-DD only (no time component). Date filters use exclusive boundaries: date_from='2026-02-20' means conversations created AFTER Feb 20 (i.e., Feb 21+). For a single day like Feb 21: use date_from='2026-02-20' and date_to='2026-02-22'. Args:
Returns: Filtered conversations with meta counts (all_count, mine_count, unassigned_count, assigned_count). Examples:
|
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 5 tools
list_conversations and filter_conversations overlap significantly; both retrieve conversations with filtering, though filter adds date/label/advanced criteria. The other three tools (get_conversation, list_messages, create_message) are clearly distinct.
All tools follow a consistent chatwoot_ verb_noun pattern in snake_case: list_conversations, get_conversation, list_messages, create_message, filter_conversations. No style mixing or irregularities.
Five tools is a reasonable size for a focused Chatwoot conversation/message server. It feels slightly thin compared to the full platform scope, but each tool has a distinct role and the count is appropriate for a targeted integration.
Core read and send workflows are covered (list/get conversations, list/create messages), but there are notable gaps: no way to update conversation status, assignee, or labels, and no create conversation or contact management. The surface handles common support tasks but lacks lifecycle management.