cmcc-mcp-sms-notifier-enhanced
MCP 服务配置
复制以下 JSON 到 OPClaw 或其他 MCP 客户端的配置文件中即可使用
{
"mcpServers": {
"cmcc-mcp-sms-notifier": {
"args": [
"cmcc-mcp-sms-notifier"
],
"command": "uvx",
"url": "https://mcp.api-inference.modelscope.net/placeholder/sse"
}
}
}
可用工具 (2 个)
该服务在 MCP 协议中暴露的工具,AI 可按需调用
send_notification 3 个参数 需填 3 项
根据用户角色选择通知渠道并发送通知 Args: user_name: 收件人姓名 user_role: 收件人角色(employee/customer/partner) message: 通知内容 Returns: 发送结果
必填参数:user_name、user_role、message
batch_send_notifications 1 个参数 需填 1 项
批量发送通知
必填参数:notification_list
服务介绍
CMCC MCP SMS Notifier Server Enhanced
基于 Model Context Protocol (MCP) 的内部短信通知服务增强版。
功能
send_notification - 根据用户角色选择通知渠道并发送通知
Args:
user_name: 收件人姓名
user_role: 收件人角色(employee/customer/partner)
message: 通知内容
Returns:
发送结果(success/fail)
batch_send_notifications - 批量发送通知
Args:
notification_list: 通知列表,每个元素为一个字典,包含 user_name, user_role, message
Example:
notification_list = [
{"user_name": "张三", "user_role": "employee", "message": "你好,张三!您的工资已发放,请查收。"},
{"user_name": "李四", "user_role": "customer", "message": "你好,李四!您的订单已发货,请查收。"},
{"user_name": "王五", "user_role": "partner", "message": "你好,王五!合作方案已更新,请及时查看。"}
]
Returns:
发送结果列表,每个元素为一个字典,包含 user_name, channel, message, status
安装
pip install mcp-sms-notifier