telegram-notification-mcp
Sends notification messages to Telegram chats or channels via a bot.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@telegram-notification-mcpsend notification: daily report generated"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
telegram-notification-mcp
A minimal Telegram notification MCP server using only native Node.js APIs.
Requirements
Node.js >= 18.0.0
Telegram Bot Token (get from @BotFather)
Telegram Chat ID (your chat ID or channel ID)
Related MCP server: Telegram Notifier MCP Server
Quick Start
Add the Telegram notification MCP server using the claude mcp add command:
claude mcp add --transport stdio telegram-notification --scope user \
--env TELEGRAM_BOT_TOKEN=YOUR_BOT_TOKEN \
--env TELEGRAM_CHAT_ID=YOUR_CHAT_ID \
-- npx -y telegram-notification-mcpReplace YOUR_BOT_TOKEN and YOUR_CHAT_ID with your actual Telegram bot token and chat ID.
Manual Setup
If you prefer to configure manually, add to your MCP configuration (e.g., ~/.cursor/mcp.json or Claude Desktop settings):
{
"mcpServers": {
"telegram-notification": {
"command": "npx",
"args": ["telegram-notification-mcp@latest"],
"env": {
"TELEGRAM_BOT_TOKEN": "YOUR_TELEGRAM_BOT_TOKEN",
"TELEGRAM_CHAT_ID": "YOUR_TELEGRAM_CHAT_ID"
}
}
}
}Local Development
For local development, use an absolute path:
{
"mcpServers": {
"telegram-notification": {
"command": "node",
"args": ["/absolute/path/to/telegram-notification-mcp/index.js"],
"env": {
"TELEGRAM_BOT_TOKEN": "YOUR_TELEGRAM_BOT_TOKEN",
"TELEGRAM_CHAT_ID": "YOUR_TELEGRAM_CHAT_ID"
}
}
}
}Tools
send_notification
Send a notification message to Telegram.
Parameters:
message(string, required): The message to send
Example:
{
"method": "tools/call",
"params": {
"name": "send_notification",
"arguments": {
"message": "Hello, World!"
}
}
}This server cannot be deployed
Maintenance
Related MCP Connectors
Telegram: FASTEST real time Telegram API. Retrieve channel's info and messages in milliseconds..
Send and verify one-time passcodes over SMS, WhatsApp and Telegram.
Multi-tenant Telegram gateway for AI agents — HTTP+stdio, 8 tools, MTProto User API
Send, search, and manage notifications, accounts, and push preferences
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables LLMs to send notifications and receive responses via Telegram.29 npm4MIT
- AlicenseBqualityDmaintenanceEnables AI agents to send notifications and media (text, photos, documents, videos) via a Telegram bot.436 npm3Do What The F*ck You Want To Public
- AlicenseNot gradedqualityDmaintenanceEnables interaction with Telegram Bot API for sending messages, photos, editing messages, answering callbacks, and fetching updates.MIT
- AlicenseNot gradedqualityBmaintenanceEnables sending Telegram messages, photos, and documents, and retrieving bot information through the Telegram Bot API.23 npm1MIT