MCP Chatwork Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| CHATWORK_API_TOKEN | Yes | Your Chatwork API token |
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 |
|---|---|
| list_roomsB | Retrieves a list of Chatwork rooms the user belongs to. |
| list_messagesC | Retrieves the list of messages for a specified room. |
| send_messageC | Allows the agent to send messages to a room. |
| get_room_membersB | Get the list of members in a room. |
| create_taskB | Assign a task to a user in a Chatwork room. |
| get_my_tasksB | List tasks assigned to the current bot account. |
| delete_messageB | Delete a message from a room. |
| complete_taskC | Mark a task as done. |
| leave_roomD | Leave a room. |
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 9 tools
Each tool has a clearly distinct purpose: task creation/completion, message deletion, room membership, etc. No two tools could be confused for the same operation.
All tools follow a consistent verb_noun pattern in snake_case (e.g., complete_task, list_rooms). No mixing of conventions.
9 tools cover the core functionalities of a chat server (rooms, messages, tasks) without being excessive or sparse. The number is well-scoped.
The toolset covers essential CRUD operations for messages and tasks, plus room management. A minor gap is the lack of a tool to get details for a single room beyond members, but core workflows are complete.