-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.66 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 2.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "mcp-telegram",
"version": "3.0.0",
"description": "Telegram MCP server (MTProto). Connect Claude, Codex, Cursor, Claude Code, VS Code, Cline, Windsurf, and other MCP clients to a real Telegram user account: read dialogs, search messages globally, send/edit/forward, react/poll, moderate channels, tag Saved Messages (Premium reaction-tags), manage stories/contacts/folders, transcribe voice notes, and call any raw MTProto method. Browser-based local sign-in, multi-account. For a lazy-loaded skill/CLI alternative see telegram-agent.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Alexey Elizarov <alex.elizarov1@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/beautyfree/mcp-telegram.git"
},
"homepage": "https://github.com/beautyfree/mcp-telegram#readme",
"bugs": {
"url": "https://github.com/beautyfree/mcp-telegram/issues"
},
"keywords": [
"mcp",
"mcp-server",
"mcp-telegram",
"telegram-mcp",
"model-context-protocol",
"telegram",
"telegram-api",
"telegram-client",
"telegram-user",
"telegram-userbot",
"telegram-search",
"telegram-messenger",
"telegram-automation",
"telegram-integration",
"mtproto",
"gramjs",
"claude",
"claude-desktop",
"claude-code",
"anthropic",
"cursor",
"cursor-mcp",
"vscode-mcp",
"codex",
"cline",
"windsurf",
"goose",
"openai",
"ai",
"ai-agent",
"ai-tools",
"agent",
"agents",
"llm",
"llm-tools",
"chatbot",
"automation",
"stdio",
"oauth",
"messaging",
"chat",
"channel-management",
"moderation",
"agent-skills",
"skill",
"skills",
"claude-code-skills",
"codex-skills",
"cursor-rules",
"saved-messages",
"telegram-tags"
],
"files": [
"dist",
"assets"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"lint": "eslint src --ext .ts",
"prepublishOnly": "npm run build && chmod +x dist/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"big-integer": "^1.6.52",
"dotenv": "^16.3.1",
"open": "^11.0.0",
"telegram": "^2.19.10",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"tsx": "^4.19.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=20.0.0"
},
"bin": {
"mcp-telegram": "dist/index.js"
},
"publishConfig": {
"access": "public"
}
}