N
Notify
Multi-platform notification delivery supporting WeChat, Telegram, DingTalk, Bark, Lark, Feishu, and more
Share:
About
Multi-platform notification delivery supporting WeChat, Telegram, DingTalk, Bark, Lark, Feishu, and more
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
send_message
Post a message to a channel or user
list_channels
List channels the bot can access
search_messages
Search messages by query and date range
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about Notify.
- What is the Notify MCP and what does it do?
- The Notify MCP is a communication model context protocol server. It provides multi-platform notification delivery, supporting platforms such as WeChat, Telegram, and DingTalk.
- How can I configure Notify in a typical MCP client?
- Configuration typically involves adding the Notify server's URL (localhost:8080 by default) within the client's settings. The client will then discover the available notification tools.
- Does the Notify MCP require API keys or other credentials?
- No, the Notify MCP does not require API keys, OAuth, or other authentication credentials for its operation. It uses a 'none' authentication type.
- What notification platforms does Notify support?
- Notify supports a variety of platforms including WeChat, Telegram, DingTalk, Bark, Lark, and Feishu. It provides a unified interface for sending notifications to these services.
- What is a known limitation when using the Notify MCP?
- A limitation is that its transport method is 'stdio', which typically implies local execution or specific server configurations for interaction, potentially limiting remote access or cloud-based deployments.
Install Notify
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"notify": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-notify"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"notify": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-notify"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"notify": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-notify"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.