Coze
STDIOModel Context Protocol server providing Coze resources and tools integration
Model Context Protocol server providing Coze resources and tools integration
A Model Context Protocol server that provides coze resource and tool.
list_workspaces - Get workspaces listlist_bots - Get bots listcreate_bot - Create botget_me: Get self user infolist_workspaces: List workspaceslist_bots: List botsretrieve_bot: Retrieve bot infocreate_bot: Create botupdate_bot: Update botpublish_bot: Publish bot to API channelchat_with_bot: Chat with botchat_with_workflow: Chat with workflowlist_voices: List voiceWhen using uv no specific installation is needed. We will
use uvx to directly run coze-mcp-server.
Alternatively you can install coze-mcp-server via pip:
pip install coze-mcp-server
After installation, you can run it as a script using:
python -m coze_mcp_server
Add to your Claude settings:
"mcpServers": { "coze-mcp-server": { "command": "uvx", "args": ["coze-mcp-server"] } }
"mcpServers": { "coze-mcp-server": { "command": "docker", "args": ["run", "-i", "--rm", "ghcr.io/coze-dev/coze-mcp-server"] } }
"mcpServers": { "coze-mcp-server": { "command": "python", "args": ["-m", "coze_mcp_server"] } }
Add to your Zed settings.json:
"context_servers": [ "coze-mcp-server": { "command": "uvx", "args": ["coze-mcp-server"] } ],
"context_servers": { "coze-mcp-server": { "command": "python", "args": ["-m", "coze_mcp_server"] } },
MIT License.