A Model Context Protocol (MCP) server that enables Claude to communicate with users via Telegram. Provides two-way communication, notifications, question/answer flows, and message queuing. Features: - MCP server implementation with 5 tools - HTTP bridge for Telegram Bot API - Real-time notifications with priority levels - Question/answer blocking flow - Message queue for async communication - Background daemon support 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
15 lines
318 B
Plaintext
15 lines
318 B
Plaintext
# Telegram Bot Configuration
|
|
# Get your bot token from @BotFather on Telegram
|
|
TELEGRAM_BOT_TOKEN=your_bot_token_here
|
|
|
|
# Chat ID (auto-set when you send /start to your bot)
|
|
# Leave empty on first setup
|
|
TELEGRAM_CHAT_ID=
|
|
|
|
# HTTP Server Configuration
|
|
PORT=3456
|
|
HOST=localhost
|
|
|
|
# Enable/disable notifications
|
|
ENABLED=true
|