-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.38 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.38 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
{
"name": "@kfastov/tgcli",
"version": "2.0.8",
"type": "module",
"description": "Telegram CLI + MCP server powered by MTProto and the official MCP SDK",
"main": "mcp-server.js",
"scripts": {
"client": "node mcp-client.js",
"cli": "node cli.js",
"start": "node mcp-server.js",
"prepare": "npm run build",
"build": "echo \"No build step required\"",
"prepublishOnly": "npm test",
"test": "echo \"No tests specified yet\""
},
"bin": {
"tgcli": "cli.js"
},
"files": [
"cli.js",
"core",
"message-sync-service.js",
"mcp-server.js",
"store-lock.js",
"telegram-client.js",
"scripts/install-cli.sh",
"LIBRARY.md",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kfastov/telegram-mcp-server.git"
},
"keywords": [
"telegram",
"telegram-client",
"mcp",
"mcp-server",
"mtproto",
"fastmcp",
"claude",
"cursor",
"ai-assistant",
"ai-agent"
],
"author": "Konstantin Fastov",
"license": "MIT",
"bugs": {
"url": "https://github.com/kfastov/telegram-mcp-server/issues"
},
"homepage": "https://github.com/kfastov/telegram-mcp-server#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.2",
"@mtcute/core": "^0.27.8",
"@mtcute/node": "^0.27.8",
"better-sqlite3": "^12.6.0",
"commander": "^12.1.0"
}
}