A server for interacting with DingTalk workspaces using the Model Context Protocol.
钉钉的 Model Context Protocol (MCP) 服务器实现,使 Claude 能够与钉钉工作空间进行交互。
dingtalk_search_users
query
(string): 搜索关键词exact_match
(boolean, 默认: false): 是否进行精确匹配dingtalk_get_user_info
user_id
(string): 用户 IDdingtalk_send_message
user
(string): 接收消息的用户名称content
(string): 消息内容创建钉钉应用:
配置应用权限: 在应用详情页面配置以下权限:
userinfo
: 获取用户信息message
: 发送消息user
: 获取用户列表获取应用凭证:
在 claude_desktop_config.json
中添加以下配置:
{
"mcpServers": {
"dingtalk": {
"command": "npx",
"args": [
"-y",
"@darrenyao/server-dingtalk"
],
"env": {
"DINGTALK_APP_KEY": "your_app_key",
"DINGTALK_APP_SECRET": "your_app_secret"
}
}
}
}
{
"mcpServers": {
"dingtalk": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"DINGTALK_APP_KEY",
"-e",
"DINGTALK_APP_SECRET",
"mcp/dingtalk"
],
"env": {
"DINGTALK_APP_KEY": "your_app_key",
"DINGTALK_APP_SECRET": "your_app_secret"
}
}
}
}
DINGTALK_APP_KEY
: 必需。钉钉应用的 AppKeyDINGTALK_APP_SECRET
: 必需。钉钉应用的 AppSecret如果遇到权限错误,请检查:
Docker 构建:
docker build -t mcp/dingtalk -f Dockerfile .
本项目采用 MIT 许可证。这意味着您可以自由使用、修改和分发软件,但需遵守 MIT 许可证的条款和条件。更多详情请参阅项目仓库中的 LICENSE 文件。
A standalone proxy to connect STDIO-based MCP clients with HTTP (SSE) based MCP servers.
Provides audio input and output capabilities for AI assistants.
Send SMS messages using the Twilio API. Functions as an MCP server or a standalone REST API.
An MCP server for collecting interactive user feedback through a graphical user interface.
Send push notifications via the Pushinator service. Requires an API token from your Pushinator account.
A read-only MCP server for Slack by CData, enabling LLMs to query live Slack data. Requires the CData JDBC Driver for Slack.
An open-source messaging server for client-to-client communication using MCP HTTP Streamable messaging.
An MCP server for sending emails via the Postmark service, configured through environment variables.
Interact with LinkedIn using an unofficial API, requiring email and password for authentication.
A headless server to get and send emails via the Gmail API, requiring Google API credentials at runtime.