Telegram MCP Server
Provides tools to interact with a personal Telegram account, including message management, chat operations, and user information.
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 MCP Serversend a message to John saying I'll be late"
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 MCP Server
A Model Context Protocol (MCP) server that provides full access to your personal Telegram account. This allows you to interact with your Telegram messages, chats, and contacts through MCP clients like Claude Desktop.
Features
Full Account Access: Access all your personal messages, chats, and channels
Message Management: Read, send, and search messages across all conversations
Chat Operations: List, search, and get information about chats, groups, and channels
User Information: Get details about users and contacts
Real-time Operations: Mark messages as read and perform live actions
Related MCP server: tgmcp
Prerequisites
Telegram API Credentials: You need to obtain API credentials from Telegram
Node.js: Version 18 or higher
Your Phone Number: The phone number associated with your Telegram account
Setup Instructions
1. Get Telegram API Credentials
Log in with your phone number
Create a new application:
App title: Choose any name (e.g., "My MCP Server")
Short name: Choose a short name (e.g., "mcp-server")
Platform: Choose "Desktop"
Note down your
api_idandapi_hash
2. Install Dependencies
npm install3. Configure Environment
Copy the example environment file:
cp .env.example .envEdit
.envand fill in your credentials:
TELEGRAM_API_ID=your_api_id_here
TELEGRAM_API_HASH=your_api_hash_here
TELEGRAM_PHONE=+1234567890
NODE_ENV=production
SESSION_DIR=./session4. Build the Project
npm run build5. Authentication
Before using the MCP server, you need to authenticate with Telegram. Run the standalone authentication script:
npm run authYou'll be prompted to:
Enter the verification code sent to your Telegram app
If you have 2FA enabled, enter your password
The session will be saved in the session/ directory and reused automatically by the MCP server.
MCP Client Configuration
Q CLI
For Amazon Q CLI, create or edit your MCP configuration file:
macOS/Linux: ~/.config/mcp/mcp.json
Windows: %APPDATA%\mcp\mcp.json
{
"mcpServers": {
"telegram": {
"command": "node",
"args": ["/Users/orrb/personal/workspace/telegram-mcp/dist/index.js"],
"env": {
"TELEGRAM_API_ID": "your_api_id",
"TELEGRAM_API_HASH": "your_api_hash",
"TELEGRAM_PHONE": "+1234567890"
}
}
}
}Claude Desktop
Add this to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"telegram": {
"command": "node",
"args": ["/path/to/telegram-mcp-server/dist/index.js"],
"env": {
"TELEGRAM_API_ID": "your_api_id",
"TELEGRAM_API_HASH": "your_api_hash",
"TELEGRAM_PHONE": "+1234567890"
}
}
}
}Cline (VS Code Extension)
For Cline, add the MCP server to your VS Code settings or Cline configuration:
{
"cline.mcpServers": {
"telegram": {
"command": "node",
"args": ["/path/to/telegram-mcp-server/dist/index.js"],
"env": {
"TELEGRAM_API_ID": "your_api_id",
"TELEGRAM_API_HASH": "your_api_hash",
"TELEGRAM_PHONE": "+1234567890"
}
}
}
}Other MCP Clients
For other MCP clients, use:
Command:
nodeArgs:
["/path/to/telegram-mcp-server/dist/index.js"]Environment Variables: Set the Telegram credentials as shown above
Available Tools
Chat Management
list_chats
List all chats, groups, and channels you have access to.
Parameters:
limit(optional): Number of chats to return (default: 50, max: 200)
get_chat_info
Get detailed information about a specific chat.
Parameters:
chatId: The chat ID to get information for
search_chats
Search for chats by title or username.
Parameters:
query: Search query to find chats by titlelimit(optional): Number of results to return (default: 20, max: 100)
Message Operations
get_messages
Get recent messages from a specific chat.
Parameters:
chatId: The chat ID to get messages fromlimit(optional): Number of messages to return (default: 20, max: 100)fromMessageId(optional): Get messages starting from this message ID
send_message
Send a text message to a chat.
Parameters:
chatId: The chat ID to send the message totext: The message text to sendreplyToMessageId(optional): Message ID to reply to
search_messages
Search for messages across all chats or within a specific chat.
Parameters:
query: Search query to find messageschatId(optional): Limit search to specific chatlimit(optional): Number of results to return (default: 20, max: 100)
mark_as_read
Mark specific messages as read in a chat.
Parameters:
chatId: The chat ID to mark messages as readmessageIds: Array of message IDs to mark as read
User Information
get_user_info
Get information about a specific user.
Parameters:
userId: The user ID to get information for
Usage Examples
Once configured with an MCP client like Claude Desktop, you can use natural language commands:
"Show me my recent chats"
"Get the last 10 messages from my chat with John"
"Send a message to the Development group saying 'Meeting at 3 PM'"
"Search for messages containing 'project deadline'"
"Get information about chat ID 12345"
Development
Running in Development Mode
npm run devBuilding
npm run buildTesting
# Test basic setup and Telegram connection
npm run test-setup
# Test MCP server functionality
npm run test-mcpWatching for Changes
npm run watchSecurity Notes
Your session data is stored locally in the
session/directoryNever share your API credentials or session files
The server only runs locally and doesn't send data to external services
All communication happens directly between your machine and Telegram's servers
Troubleshooting
Authentication Issues
Make sure your API credentials are correct
Verify your phone number format includes country code (e.g., +1234567890)
Check that you can receive Telegram messages for the verification code
Connection Problems
Ensure you have a stable internet connection
Try deleting the
session/directory and re-authenticatingCheck that your API credentials haven't been revoked
MCP Client Issues
Verify the path to the built server (
dist/index.js) is correctMake sure Node.js is in your PATH
Check the MCP client logs for error messages
License
MIT License - see LICENSE file for details.
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
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/OrrBin/telegram-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server