[project]
name = "telegram-mcp"
version = "1.0.0"
description = "MCP server for Telegram bot interaction via MTProto user client"
readme = "README.md"
requires-python = ">=3.10"
authors = [{ name = "Justin Tieu", email = "justin@tensakulabs.com" }]
keywords = ["telegram", "mcp", "llm", "mtproto", "telethon"]
license = { text = "MIT" }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"mcp>=1.1.3",
"telethon>=1.36.0",
"python-dotenv>=1.0.0",
]
[project.scripts]
telegram-mcp = "telegram_mcp:main"
telegram-mcp-auth = "telegram_mcp.auth:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = ["pyright>=1.1.389", "ruff>=0.7.3"]