Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from bundle
Telegram MTProto MCP server with userbot watcher, chat/DM parser and context builders
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
docker-compose.yml
1version: '3.8'23services:4telegram-mcp:5build:6context: .7dockerfile: Dockerfile8container_name: telegram-mcp9# Load environment variables from a .env file in the same directory10env_file:11- .env12# Keep stdin open and allocate a pseudo-TTY, crucial for stdio MCP servers13stdin_open: true14tty: true15# Optional: Uncomment the following lines to mount a local directory16# for persisting the Telegram session file if NOT using TELEGRAM_SESSION_STRING.17# Replace './telegram_sessions' with your desired host path.18# volumes:19# - ./telegram_sessions:/app20restart: unless-stopped