cursor-telegram-mcp 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +272 -0
- package/dist/agentRunner.js +332 -0
- package/dist/answerWaiters.js +64 -0
- package/dist/cli.js +66 -0
- package/dist/config.js +160 -0
- package/dist/doctor.js +116 -0
- package/dist/formatTelegram.js +28 -0
- package/dist/index.js +334 -0
- package/dist/login.js +59 -0
- package/dist/parseInbound.js +93 -0
- package/dist/session.js +49 -0
- package/dist/setup.js +127 -0
- package/dist/splitMessage.js +61 -0
- package/dist/store.js +81 -0
- package/dist/taskQueue.js +33 -0
- package/dist/telegram.js +241 -0
- package/dist/transcript.js +56 -0
- package/dist/worker.js +667 -0
- package/mcp.client.template.json +12 -0
- package/package.json +58 -0
package/package.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "cursor-telegram-mcp",
|
|
3
|
+
"version": "0.5.0",
|
|
4
|
+
"description": "Manage Cursor from your phone over Telegram: an MCP server + auto-spawned local worker that notifies you, asks you questions, and (optionally) runs headless Cursor agents you text it. Local, bring-your-own-bot, runs entirely on your machine.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"cursor",
|
|
9
|
+
"mcp",
|
|
10
|
+
"telegram",
|
|
11
|
+
"bot",
|
|
12
|
+
"human-in-the-loop",
|
|
13
|
+
"agent"
|
|
14
|
+
],
|
|
15
|
+
"bin": {
|
|
16
|
+
"cursor-telegram-mcp": "dist/cli.js"
|
|
17
|
+
},
|
|
18
|
+
"main": "dist/index.js",
|
|
19
|
+
"files": [
|
|
20
|
+
"dist",
|
|
21
|
+
"mcp.client.template.json",
|
|
22
|
+
"README.md",
|
|
23
|
+
"LICENSE"
|
|
24
|
+
],
|
|
25
|
+
"publishConfig": {
|
|
26
|
+
"access": "public"
|
|
27
|
+
},
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "tsc -p tsconfig.build.json",
|
|
30
|
+
"prepublishOnly": "npm run build",
|
|
31
|
+
"mcp": "tsx src/cli.ts",
|
|
32
|
+
"setup": "tsx src/setup.ts",
|
|
33
|
+
"login": "tsx src/login.ts",
|
|
34
|
+
"doctor": "tsx src/doctor.ts",
|
|
35
|
+
"worker": "tsx src/worker.ts",
|
|
36
|
+
"worker:supervise": "bash scripts/supervise-worker.sh",
|
|
37
|
+
"worker:install": "bash scripts/install-worker.sh",
|
|
38
|
+
"worker:uninstall": "bash scripts/uninstall-worker.sh",
|
|
39
|
+
"start": "tsx src/index.ts",
|
|
40
|
+
"smoke": "tsx src/smoke.ts",
|
|
41
|
+
"typecheck": "tsc --noEmit"
|
|
42
|
+
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
45
|
+
"zod": "^3.25.0"
|
|
46
|
+
},
|
|
47
|
+
"optionalDependencies": {
|
|
48
|
+
"@cursor/sdk": "^1.0.18"
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@types/node": "^22.10.0",
|
|
52
|
+
"tsx": "^4.22.4",
|
|
53
|
+
"typescript": "^5.7.0"
|
|
54
|
+
},
|
|
55
|
+
"engines": {
|
|
56
|
+
"node": ">=18"
|
|
57
|
+
}
|
|
58
|
+
}
|