telegram-mcp-local-server
Version:
Secure Model Context Protocol (MCP) server for Telegram integration. Runs locally, allows AI agents to read chats and message history, with built-in readonly mode for safety.
81 lines (59 loc) ⢠2.61 kB
Markdown
# Telegram MCP Local Server
[](https://badge.fury.io/js/telegram-mcp-local-server)
[](https://opensource.org/licenses/MIT)
[](https://www.npmjs.com/package/telegram-mcp-local-server)
A secure Model Context Protocol (MCP) server for Telegram integration. Allows AI agents to interact with Telegram API locally on your machine.
## How It Works & Security
This server runs **entirely on your local machine** and acts as a bridge between AI agents (like Cursor, Claude, etc.) and Telegram's API.
š **Your data stays private:**
- All communication happens locally between your AI agent and your machine
- No data is sent to third-party servers
- Your Telegram credentials remain on your device
- Session data is stored locally and never transmitted
š”ļø **Built-in safety features:**
- Readonly mode by default (prevents accidental message sending)
- Local session management
- Direct API communication with Telegram only
## Getting Credentials
### Option 1: Use configuration tool
Use the built-in session helper without downloading the repository:
Type in console:
```bash
npx telegram-mcp-local-server --session
```
Follow the prompts:
1. Enter your API ID and Hash
2. Enter your phone number
3. Enter the verification code from SMS
4. Enter your 2FA password if enabled
5. Copy the generated JSON to your configs
#### Generated configuration example:
```json
{
"mcpServers": {
"telegram": {
"command": "npx",
"args": ["telegram-mcp-local-server"],
"env": {
"TELEGRAM_API_ID": "your_api_id",
"TELEGRAM_API_HASH": "your_api_hash",
"TELEGRAM_SESSION_STRING": "your_session_string",
"TELEGRAM_READONLY_MODE": "true"
}
}
}
}
```
### Option 2: Generate Session String manually and fill configuration
1. Go to https://my.telegram.org/
2. Log in with your Telegram account
3. Navigate to "API development tools"
4. Create a new application to get your `api_id` and `api_hash`
**Note:** Keep `TELEGRAM_READONLY_MODE=true` for safe operation. This allows reading chats and message history but prevents sending messages.
## Available Tools
- `telegram_connect` - Connect to Telegram
- `telegram_get_chats` - Get a list of your chats
- `telegram_get_chat_history` - Read message history from specific chats
- `telegram_send_message` - Send messages (disabled in readonly mode)
## License
MIT - Your data, your control.