Skip to content

Commit bb689aa

Browse files
authored
Update mcp-notify.json description and add features
Updated the description to reflect the supported platforms and added new message sending functionalities for DingTalk and Lark/Feishu.
1 parent 8d60d29 commit bb689aa

File tree

1 file changed

+57
-1
lines changed

1 file changed

+57
-1
lines changed

mcp-registry/servers/mcp-notify.json

Lines changed: 57 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "mcp-notify",
33
"display_name": "Notify MCP Server",
4-
"description": "Provides an MCP (Model Context Protocol) server for message push, supporting Weixin, DingTalk, Telegram, Bark, Lark, Feishu, and Home Assistant.",
4+
"description": "Provides an MCP (Model Context Protocol) server for message push, supporting WeWork, DingTalk, Telegram, Lark, Feishu.",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/aahl/mcp-notify"
@@ -134,6 +134,62 @@
134134
"photo"
135135
]
136136
}
137+
},
138+
{
139+
"name": "ding_send_text",
140+
"description": "Send text or markdown message via DingTalk Robot",
141+
"inputSchema": {
142+
"type": "object",
143+
"properties": {
144+
"text": {
145+
"type": "string",
146+
"description": "The message content to send."
147+
},
148+
"title": {
149+
"type": "string",
150+
"description": "The message title to send."
151+
},
152+
"msgtype": {
153+
"type": "string",
154+
"description": "The parse mode of content. [text/markdown]"
155+
},
156+
"bot_key": {
157+
"type": "string",
158+
"description": "Special robot key specified in the prompts."
159+
}
160+
},
161+
"required": [
162+
"text"
163+
]
164+
}
165+
},
166+
{
167+
"name": "lark_send_text",
168+
"description": "Send text or markdown message via Lark/Feishu Robot",
169+
"inputSchema": {
170+
"type": "object",
171+
"properties": {
172+
"text": {
173+
"type": "string",
174+
"description": "The message content to send."
175+
},
176+
"msgtype": {
177+
"type": "string",
178+
"description": "The parse mode of content. [text/markdown]"
179+
},
180+
"bot_key": {
181+
"type": "string",
182+
"description": "Special robot key specified in the prompts."
183+
},
184+
"is_lark": {
185+
"type": "integer",
186+
"description": "0: Feishu, 1: Lark"
187+
}
188+
},
189+
"required": [
190+
"text"
191+
]
192+
}
137193
}
138194
],
139195
"installations": {

0 commit comments

Comments
 (0)