telegram-notification-mcp
Sends notification messages to Telegram chats or channels via a bot.
Click on "Install 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-mcp
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 installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/discountry/telegram-notification-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server