-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.69 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
{
"name": "@tenkicloud/mcp",
"version": "0.2.0",
"mcpName": "io.github.LuxorLabs/tenki-mcp",
"description": "Model Context Protocol server for Tenki Cloud — disposable microVM sandboxes for AI agents. Create sandboxes, run code, read/write files, run git, expose preview URLs — from any MCP client.",
"type": "module",
"bin": {
"tenki-mcp": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"SECURITY.md",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc --watch",
"prepack": "npm run build",
"prepublishOnly": "npm run build",
"pretest": "npm run build",
"test": "node test/offline.test.mjs && node test/public-shapes.test.mjs && node test/exec-output.test.mjs && node test/http-input.test.mjs && node test/security.test.mjs && node test/client-net.test.mjs",
"test:all": "npm run build && node test/run.mjs",
"test:offline": "npm run build && node test/offline.test.mjs"
},
"keywords": [
"tenki",
"mcp",
"model-context-protocol",
"sandbox",
"microvm",
"ai-agents",
"code-execution"
],
"license": "MIT",
"author": "Tenki Cloud (https://tenki.cloud)",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.30.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^26.2.0",
"typescript": "^7.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LuxorLabs/tenki-mcp.git"
},
"homepage": "https://github.com/LuxorLabs/tenki-mcp#readme",
"bugs": {
"url": "https://github.com/LuxorLabs/tenki-mcp/issues"
}
}