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 文件。
An IMAP Model Context Protocol (MCP) server to expose IMAP operations as tools for AI assistants.
Enables room-based messaging between multiple agents.
A server for interacting with WeChat, a popular messaging and social media app.
An MCP server for interacting with the Slack API, allowing for sending messages, managing channels, and other workspace actions.
A Node.js service for interacting with the LnExchange API for spot trading.
Access Reddit's public API to browse frontpage posts, subreddit information, and read post comments.
Sends desktop notifications with sound when agent tasks are completed.
Schedule and manage Zoom meetings with AI assistance. Requires Zoom API credentials for configuration.
The most powerful MCP server for Slack Workspaces. This integration supports both Stdio and SSE transports, proxy settings and does not require any permissions or bots being created or approved by Workspace admins 😏.
A read-only MCP server by CData that enables LLMs to query live SendGrid data. Requires the external CData JDBC Driver for SendGrid.