-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1020 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 1020 Bytes
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
{
"name": "mcp-telnet",
"version": "0.6.0",
"description": "MCP server allowing Claude to interact with telnet-accessible systems",
"main": "dist/index.js",
"type": "module",
"bin": {
"mcp-telnet": "./dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js && node scripts/update-version.js",
"prepare": "npm run build",
"watch": "tsc --watch"
},
"keywords": [
"mcp",
"telnet",
"claude",
"llm",
"ai",
"mud",
"terminal",
"network"
],
"author": "distantorigin",
"repository": {
"type": "git",
"url": "https://github.com/distantorigin/mcp-telnet.git"
},
"bugs": {
"url": "https://github.com/distantorigin/mcp-telnet/issues"
},
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.2.2",
"shx": "^0.4.0",
"typescript": "^5.9.3"
}
}