telegram-mcp-local-server
Version:
Secure Model Context Protocol (MCP) server for Telegram integration. Runs locally, allows AI agents to read chats and message history, with built-in readonly mode for safety.
64 lines (63 loc) • 1.86 kB
JSON
{
"name": "telegram-mcp-local-server",
"version": "1.0.7",
"description": "Secure Model Context Protocol (MCP) server for Telegram integration. Runs locally, allows AI agents to read chats and message history, with built-in readonly mode for safety.",
"main": "dist/index.js",
"type": "module",
"bin": {
"telegram-mcp-local-server": "dist/index.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "jest",
"test-client": "tsx src/test.ts",
"test-channels": "tsx src/test-channels.ts",
"session": "tsx src/session-helper.ts",
"test-readonly": "TELEGRAM_READONLY_MODE=true npm test",
"prepublishOnly": "npm run build",
"version:patch": "tsx scripts/bump-version.ts patch",
"version:minor": "tsx scripts/bump-version.ts minor",
"version:major": "tsx scripts/bump-version.ts major"
},
"keywords": [
"mcp",
"telegram",
"server",
"model-context-protocol",
"ai",
"llm",
"chat",
"messaging"
],
"author": "Your Name <your.email@example.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/telegram-mcp-local-server.git"
},
"homepage": "https://github.com/yourusername/telegram-mcp-local-server#readme",
"bugs": {
"url": "https://github.com/yourusername/telegram-mcp-local-server/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"telegram": "^2.24.10",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.10.0",
"tsx": "^4.6.0",
"typescript": "^5.3.0",
"jest": "^29.7.0",
"@types/jest": "^29.5.8",
"ts-jest": "^29.1.1"
},
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}