Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"telegram_bot": {
"env": {
"TELEGRAM_BOT_API_TOKEN": "your_bot_token_here"
},
"args": [
"telegram-bot-mcp-server"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A powerful Model Context Protocol (MCP) server for seamless Telegram Bot API integration with intelligent message splitting, comprehensive error handling, and NPX support.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'telegram-bot-mcp-server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked telegram-bot-mcp-server against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in communication
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
An MCP server that securely interfaces with your iMessage database via the Model Context Protocol (MCP), allowing LLMs to query and analyze iMessage conversations. It includes robust phone number validation, attachment processing, contact management, group chat handling, and full support for sending and receiving messages.
Email & SMS infrastructure for AI agents — send and receive real email and text messages programmatically
A Model Context Protocol (MCP) server for interacting with Microsoft 365 and Office services through the Graph API
MCP Security Weekly
Get CVE alerts and security updates for Telegram Bot Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A powerful Model Context Protocol (MCP) server for seamless Telegram Bot API integration with intelligent message splitting, comprehensive error handling, and NPX support.
npx telegram-bot-mcp-server - no installation required# Run directly without installation
npx telegram-bot-mcp-server
# Install globally
npm install -g telegram-bot-mcp-server
# Or install locally
npm install telegram-bot-mcp-server
/newbotAdd this configuration to your MCP client (Claude Desktop, etc.):
{
"mcpServers": {
"telegram_bot": {
"command": "npx",
"args": ["telegram-bot-mcp-server"],
"env": {
"TELEGRAM_BOT_API_TOKEN": "your_bot_token_here"
}
}
}
}
Using global installation:
{
"mcpServers": {
"telegram_bot": {
"command": "telegram-bot-mcp-server",
"env": {
"TELEGRAM_BOT_API_TOKEN": "your_bot_token_here"
}
}
}
}
Using local installation:
{
"mcpServers": {
"telegram_bot": {
"command": "node",
"args": ["./node_modules/.bin/telegram-bot-mcp-server"],
"env": {
"TELEGRAM_BOT_API_TOKEN": "your_bot_token_here"
}
}
}
}
send-messageSend text messages with automatic splitting for long content.
chatId (string), text (string)send-photoSend photos with captions, handling long captions automatically.
chatId (string), media (string), text (optional string)send-photoSend a photo with an optional caption.
chatId: Target chat ID or usernamemedia: File ID, URL, or uploaded filetext (optional): Caption for the photokick-chat-memberBan a user from a group, supergroup, or channel.
chatId: Target chatuserId: User to banun-ban-chat-memberUnban a previously banned user from a chat.
chatId: Target chatuserId: User to unbanget-chatFetch full chat metadata and details.
chatId: Target chatget-chat-member-countGet the total number of members in a group or channel.
chatId: Target chatget-chat-memberGet detailed info about a specific member in a group or channel.