package.json•1.01 kB
{
"name": "telegram-mcp-server",
"version": "0.3.0",
"description": "MCP server for scraping Telegram public channels and groups",
"main": "dist/index.js",
"type": "module",
"bin": {
"telegram-mcp-server": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"dev": "node --watch dist/index.js",
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"mcp",
"telegram",
"scraper",
"model-context-protocol"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/cheerio": "^0.22.35",
"@types/node": "^24.0.3",
"typescript": "^5.8.3"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.13.0",
"cheerio": "^1.1.0",
"date-fns": "^4.1.0",
"dotenv": "^16.5.0",
"input": "^1.0.1",
"jsdom": "^26.1.0",
"node-fetch": "^3.3.2",
"puppeteer": "^24.10.2",
"telegram": "^2.26.22"
}
}