Telegram MCP Server
Enables full access to your personal Telegram account via MCP, allowing reading, sending, and searching messages, managing chats, and retrieving user information through natural language commands.
README
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
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
- Go to https://my.telegram.org/apps
- 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 install
3. Configure Environment
- Copy the example environment file:
cp .env.example .env
- Edit
.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=./session
4. Build the Project
npm run build
5. Authentication
Before using the MCP server, you need to authenticate with Telegram. Run the standalone authentication script:
npm run auth
You'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:
node - Args:
["/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 dev
Building
npm run build
Testing
# Test basic setup and Telegram connection
npm run test-setup
# Test MCP server functionality
npm run test-mcp
Watching for Changes
npm run watch
Security Notes
- Your session data is stored locally in the
session/directory - Never 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-authenticating - Check that your API credentials haven't been revoked
MCP Client Issues
- Verify the path to the built server (
dist/index.js) is correct - Make 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.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.