A Model Context Protocol (MCP) server that exposes the full Chatwoot API — including apps-id.indicafacil.app exclusive features — as 129 tools for use with AI assistants like Claude, VS Code Copilot, and others.
- 129 tools covering all Chatwoot API endpoints
- Account, Agents, Contacts, Conversations, Messages, Inboxes, Teams, and more
- Reports (v1 & v2), Help Center, Automation Rules, Custom Attributes, Custom Filters
- [apps-id.indicafacil.app] exclusive: Kanban Boards, Kanban Steps, Kanban Tasks, Kanban Audit Events, Kanban Preferences, Scheduled Messages
- Proper MCP tool annotations (
readOnlyHint,destructiveHint,idempotentHint) - Multi-account support (
account_idis a per-tool argument) - stdio transport (compatible with Claude Desktop, VS Code, and any MCP client)
- Bun v1.0+
- A Chatwoot instance with API access
bun install| Variable | Required | Description |
|---|---|---|
CHATWOOT_BASE_URL |
Yes | Your Chatwoot instance URL (e.g. https://app.chatwoot.com) |
CHATWOOT_API_TOKEN |
Yes | API access token (found in Chatwoot → Profile → Access Token) |
bun run devbun run startAdd to your claude_desktop_config.json:
{
"mcpServers": {
"chatwoot": {
"command": "bun",
"args": ["run", "/path/to/mcp-chatwoot/src/index.ts"],
"env": {
"CHATWOOT_BASE_URL": "https://your-chatwoot-instance.com",
"CHATWOOT_API_TOKEN": "your-api-token"
}
}
}
}Add to your .vscode/mcp.json:
{
"servers": {
"chatwoot": {
"command": "bun",
"args": ["run", "${workspaceFolder}/src/index.ts"],
"env": {
"CHATWOOT_BASE_URL": "https://your-chatwoot-instance.com",
"CHATWOOT_API_TOKEN": "your-api-token"
}
}
}
}account_get, account_update
agent_bots_list, agent_bots_create, agent_bots_get, agent_bots_update, agent_bots_delete
agents_list, agents_create, agents_update, agents_delete
audit_logs_list
automation_rules_list, automation_rules_create, automation_rules_get, automation_rules_update, automation_rules_delete
canned_responses_list, canned_responses_create, canned_responses_update, canned_responses_delete
contacts_list, contacts_create, contacts_get, contacts_update, contacts_delete, contacts_conversations, contacts_search, contacts_filter, contacts_create_contact_inbox, contacts_contactable_inboxes, contacts_merge
contact_labels_list, contact_labels_set
conversations_meta, conversations_list, conversations_create, conversations_filter, conversations_get, conversations_update, conversations_toggle_status, conversations_toggle_priority, conversations_set_custom_attributes, conversations_get_labels, conversations_set_labels, conversations_reporting_events
conversation_assignments_assign
messages_list, messages_create, messages_delete
custom_attributes_list, custom_attributes_create, custom_attributes_get, custom_attributes_update, custom_attributes_delete
custom_filters_list, custom_filters_create, custom_filters_get, custom_filters_update, custom_filters_delete
help_center_portals_list, help_center_portals_create, help_center_portals_update, help_center_categories_create, help_center_articles_create
inboxes_list, inboxes_get, inboxes_create, inboxes_update, inboxes_get_agent_bot, inboxes_set_agent_bot, inbox_members_list, inbox_members_create, inbox_members_update, inbox_members_delete
integrations_list_apps, integrations_create_hook, integrations_update_hook, integrations_delete_hook
profile_get
reports_account_overview, reports_account_summary, reports_agent_summary, reports_conversation_metrics, reports_v2_overview, reports_v2_agents, reports_v2_inboxes, reports_v2_teams, reports_v2_labels
teams_list, teams_create, teams_get, teams_update, teams_delete, team_members_list, team_members_add, team_members_update, team_members_delete
webhooks_list, webhooks_create, webhooks_update, webhooks_delete
kanban_boards_list, kanban_boards_create, kanban_boards_get, kanban_boards_update, kanban_boards_delete, kanban_boards_get_automation_settings, kanban_boards_update_automation_settings, kanban_boards_get_members, kanban_boards_set_members
kanban_steps_list, kanban_steps_create, kanban_steps_get, kanban_steps_update, kanban_steps_delete
kanban_tasks_list, kanban_tasks_create, kanban_tasks_get, kanban_tasks_update, kanban_tasks_delete, kanban_tasks_move
kanban_audit_events_list, kanban_audit_events_get
kanban_preferences_get
scheduled_messages_list, scheduled_messages_create, scheduled_messages_update, scheduled_messages_delete
# Run tests
bun test
# Lint & format
bun run lint
bun run format
# Type check
bun run build-check
# Full check (lint + type-check + tests)
bun run checkMIT