Qwen Code Telegram Server
БесплатноНе проверенMCP server integrating Telegram bot with Qwen Code for AI chat, supporting persistent sessions, group chat, and advanced features via mention-based triggers.
Описание
MCP server integrating Telegram bot with Qwen Code for AI chat, supporting persistent sessions, group chat, and advanced features via mention-based triggers.
README
Version: v2.2.0
MCP Server for Telegram Bot integration with Qwen Code. Chat with Qwen Code directly from Telegram with persistent sessions, group chat support, and advanced features.
🌟 Features
Core Features
- 🤖 Telegram Bot Integration - Full Telegram Bot API via long polling
- 🔌 MCP Protocol Support - Native integration with Qwen Code
- 💬 Persistent Sessions - File-based conversation history (survives restarts)
- 🔐 Pairing System - 6-digit code security for access control
- ⌨️ Typing Indicators - Better UX while processing
- 📊 Admin Commands - Session management and monitoring
- 🧹 Auto-Cleanup - Automatic maintenance for old sessions
- 🔧 Dynamic Configuration - Workspace-specific settings
v2.2.0 New Features
- 👥 Group Chat Support - Bot works in groups without crashes!
- 📢 Mention-Based Trigger - Bot responds only when mentioned (
@bot_name) - 💭 Quoted Message Context - Bot reads reply/quote messages
- 🔇 Silent Ignore - No spam in groups (ignores non-mentions)
- 🎯 Smart Reply - Auto-reply to original message for better UX
- 📈 Metrics Tracking - Request count and token usage monitoring
🚀 Quick Start
For Qwen Code Users (Vibe Coding)
🎯 EASIEST METHOD: Let your LLM agent handle everything!
After cloning this repository, simply tell your Qwen Code:
@qwen Read and implement VIBE-INSTALL.md for installation,
then VIBE-CONFIG.md for configuration. Ask me for confirmation
before any sensitive data.
Your LLM agent will:
- ✅ Install all dependencies automatically
- ✅ Build the TypeScript project
- ✅ Guide you through Telegram bot creation
- ✅ Configure Qwen Code MCP settings
- ✅ Test everything works
📚 Vibe Coding Guides:
- 📦 VIBE-INSTALL.md - Automated installation
- ⚙️ VIBE-CONFIG.md - Automated configuration
- 🛠️ VIBE-REPAIR.md - Automated troubleshooting
Special Note from the Human This is the only section touched by human. Everything in this MCP is vibe-coded but safely structured. If something messed up, simply run your agent. It will do the complex thing for you. Wanted new features? Ask your agent.
My agent clears the path. Yours should follow. -JavaIsKey
Manual Installation
Prerequisites
- Node.js >= 18.x
- npm >= 9.x
- Git
Steps
- Clone repository
git clone https://github.com/YOUR_USERNAME/qwen-code-telegram-mcp.git
cd qwen-code-telegram-mcp
- Install dependencies
npm install
- Build TypeScript
npm run build
- Setup environment
cp .env.example .env
# Edit .env with your configuration
- Configure Qwen Code
Add to ~/.qwen/settings.json:
{
"mcpServers": {
"telegram": {
"command": "node",
"args": ["[YOUR_PATH]/dist/index.js"],
"env": {
"TELEGRAM_BOT_TOKEN": "${TELEGRAM_BOT_TOKEN}",
"WORKSPACE_PATH": "[YOUR_WORKSPACE_PATH]"
}
}
}
}
- Start Qwen Code
npx qwen
- Chat with your bot on Telegram!
📱 Telegram Bot Setup
Create New Bot
- Open Telegram → Search
@BotFather - Send
/newbot - Follow instructions:
- Choose name:
My Assistant - Choose username:
my_assistant_bot
- Choose name:
- Copy the bot token (format:
123456789:ABCdef...)
⚠️ IMPORTANT: Disable Privacy Mode
For group chat support:
- @BotFather →
/setprivacy - Select your bot
- Choose: "Disable privacy"
Without this, bot won't read group messages!
🎮 Usage
Private Chat
Just send message to bot:
User: Hello
Bot: [AI response from Qwen Code]
Group Chat
Must mention bot:
User: @my_bot_name What's the capital of France?
Bot: [AI response]
User: hello everyone
Bot: [Ignored - no mention]
With quoted message:
User 1: [sends message] "This is important"
User 2: [reply] @my_bot_name summarize this
Bot: [Reads quoted message + instruction]
📋 Available Commands
User Commands
/start- Welcome message + pairing instructions/help- Help information/status- Server status/session- Your session info/clear- Clear your session/whoami- Your Telegram info/ask <question>- Ask Qwen Code directly/pair <CODE>- Pair bot with code/approvalmode [mode]- Set approval mode (plan/auto-accept/yolo)
Admin Commands
/sessions- List all active sessions
🔐 Pairing System
How It Works
- User messages bot - Bot checks if user is paired
- Admin generates code - Via MCP tool:
generate_telegram_pairing_code - User pairs - User runs:
/pair ABC123 - Access granted - User now has access
Pairing Code Properties
- 6 characters (uppercase alphanumeric)
- Valid for 15 minutes
- One-time use
- Auto-cleanup when expired
📁 Project Structure
qwen-code-telegram-mcp/
├── src/
│ └── index.ts # Main code (2300+ lines)
├── dist/
│ └── index.js # Compiled code
├── .env # Environment config
├── .env.example # Example config
├── package.json # Dependencies
├── tsconfig.json # TypeScript config
├── README.md # This file
├── DOCUMENTATION.md # Detailed documentation
├── VIBE-INSTALL.md # LLM agent installation guide
├── VIBE-CONFIG.md # LLM agent configuration guide
└── VIBE-REPAIR.md # LLM agent troubleshooting guide
Workspace/
├── temp/
│ ├── telegram-bot.log # Runtime log
│ └── telegram-sessions/
│ ├── {chatId}.json # User sessions
│ ├── allowlist.json # Paired users
│ └── approval-modes.json # Approval modes
└── .qwen/
└── commands/
└── *.md # Custom commands
⚙️ Configuration
Environment Variables
Copy .env.example to .env and configure:
# Telegram Bot Configuration
TELEGRAM_BOT_TOKEN=your_bot_token_here
# Workspace Configuration
WORKSPACE_PATH=/path/to/your/workspace
# MCP Server Configuration
MCP_SERVER_PORT=3000
MCP_TRANSPORT=stdio
Session Settings
| Setting | Default | Description |
|---|---|---|
MAX_CONVERSATION_HISTORY |
50 | Max messages per session |
INACTIVE_CHAT_TIMEOUT_MS |
86400000 | Session expiry (24h) |
🛠️ Development
# Build TypeScript
npm run build
# Run development mode
npm run dev
# Run production
npm start
🐛 Troubleshooting
Bot not responding
Check:
- Bot token valid? → @BotFather
- Bot running in Qwen Code?
- Privacy mode disabled? →
/setprivacy
Session not saving
Check:
WORKSPACE_PATHcorrect?- Folder has write permission?
temp/telegram-sessions/exists?
Pairing code not working
Check:
- Code not expired (15 min only)
- Code entered correctly (uppercase)
- User in allowlist?
Need Help?
👉 See VIBE-REPAIR.md for comprehensive troubleshooting guide!
📊 Metrics Tracking
Bot automatically tracks:
totalRequests- Total message counttotalErrors- Error counttokens.total- Estimated token usagetokens.prompt- Input tokenstokens.output- Output tokens
View with: /status command
🧪 Testing Checklist
Basic Functionality
- DM:
hello→ AI response - Group:
@bot_name test→ AI response - Group:
test(no mention) → Ignored - Custom command:
/health→ Executed
Sessions
- Session file created
- Session persists after restart
-
/cleardeletes session -
/sessionshows correct info
Pairing
- Unpaired → Access denied
- Generate code → Works
-
/pair ABC123→ Success - Invalid code → Rejected
Files
- Send document → Processed
- Send photo → Downloaded
-
send_telegram_file→ Works
Logging
- Log file created
- Messages logged
- Errors logged
- No infinite loops
📝 Version History
v2.2.0 (Current)
- ✅ Full group chat support
- ✅ Mention-based triggering
- ✅ Quoted message context
- ✅ Telegram auto-correct handling
- ✅ Metrics tracking
v2.1
- Multi-bot support via workspace-specific MCP config
v2.0
- Persistent sessions
- Pairing system
- Typing indicators
- Admin commands
v1.0
- Initial release with basic MCP integration
📚 Documentation
- VIBE-INSTALL.md - LLM agent installation guide
- VIBE-CONFIG.md - LLM agent configuration guide
- VIBE-REPAIR.md - LLM agent troubleshooting guide
- DOCUMENTATION.md - Detailed technical documentation
- CONTRIBUTING.md - Contribution guidelines
- CODE_OF_CONDUCT.md - Code of conduct
🤝 Contributing
Contributions welcome! Please read CONTRIBUTING.md first.
Quick Contributing
- Fork repository
- Create branch:
git checkout -b feature/your-feature - Make changes
- Test thoroughly
- Submit PR
📄 License
ISC License - see LICENSE file.
🆘 Support
For Issues:
- Check VIBE-REPAIR.md first
- Review logs:
temp/telegram-bot.log - Create GitHub issue with:
- Error message
- What you were doing
- Your environment (Node.js, OS)
For Questions:
- Create GitHub Discussion
- Check DOCUMENTATION.md
🎯 Why Vibe Coding?
This project is designed for Qwen Code vibe coding:
- ✅ LLM-Friendly Setup - VIBE-* guides for automated installation
- ✅ Zero Configuration - LLM agent handles everything
- ✅ Smart Troubleshooting - VIBE-REPAIR for automated fixes
- ✅ User Confirmation - Sensitive data requires user approval
- ✅ Well Documented - Every step clearly explained
Just clone and let your LLM agent do the work! 🚀
Built with ❤️ for Qwen Code
Last updated: 2026-03-26
Установка Qwen Code Telegram Server
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/JawaKunci/qwen-code-telegram-mcpFAQ
Qwen Code Telegram Server MCP бесплатный?
Да, Qwen Code Telegram Server MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Qwen Code Telegram Server?
Нет, Qwen Code Telegram Server работает без API-ключей и переменных окружения.
Qwen Code Telegram Server — hosted или self-hosted?
Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.
Как установить Qwen Code Telegram Server в Claude Desktop, Claude Code или Cursor?
Открой Qwen Code Telegram Server на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
Gmail
Read, send and search emails from Claude
автор: GoogleSlack
Send, search and summarize Slack messages
автор: SlackRunbear
No-code MCP client for team chat platforms, such as Slack, Microsoft Teams, and Discord.
Discord Server
A community discord server dedicated to MCP by [Frank Fiegel](https://github.com/punkpeye)
Compare Qwen Code Telegram Server with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории communication
