- Added support for string session authentication in main.py. - Introduced new tools for searching contacts and retrieving message context. - Updated README.md with detailed usage examples and security considerations. - Modified pyproject.toml for versioning and dependency updates. - Expanded .gitignore to include Telegram session files.
35 lines
1,008 B
TOML
35 lines
1,008 B
TOML
[build-system]
|
|
requires = ["setuptools>=42", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "telegram-mcp"
|
|
version = "1.5.0"
|
|
description = "Telegram MCP (Model Context Protocol) server built using Python, Telethon, and MCP Python SDK"
|
|
readme = "README.md"
|
|
authors = [
|
|
{name = "chigwell"}
|
|
]
|
|
license = {text = "Apache-2.0"}
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: Apache Software License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
]
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"dotenv>=0.9.9",
|
|
"httpx>=0.28.1",
|
|
"mcp[cli]>=1.4.1",
|
|
"nest-asyncio>=1.6.0",
|
|
"python-dotenv>=1.1.0",
|
|
"telethon>=1.39.0",
|
|
]
|
|
|
|
[project.urls]
|
|
"Homepage" = "https://github.com/chigwell/telegram-mcp"
|
|
"Bug Tracker" = "https://github.com/chigwell/telegram-mcp/issues"
|