@ebowwa/mcp-modal 0.1.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/README.md +96 -0
- package/dist/index.js +92728 -0
- package/mcp.json +10 -0
- package/package.json +62 -0
- package/tsconfig.json +31 -0
package/mcp.json
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Modal GPU Cloud",
|
|
3
|
+
"description": "Manage Modal GPU workloads, training, and robot inference",
|
|
4
|
+
"command": "bun",
|
|
5
|
+
"args": ["run", "/Users/ebowwa/Desktop/codespaces/packages/mcp/mcp-modal/dist/index.js"],
|
|
6
|
+
"env": {
|
|
7
|
+
"MODAL_TOKEN_ID": "${MODAL_TOKEN_ID}",
|
|
8
|
+
"MODAL_TOKEN_SECRET": "${MODAL_TOKEN_SECRET}"
|
|
9
|
+
}
|
|
10
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ebowwa/mcp-modal",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Modal GPU Cloud MCP server - manage GPU workloads, training, and robot inference",
|
|
5
|
+
"author": "ebowwa",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"main": "./dist/index.js",
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"import": "./dist/index.js"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"bin": {
|
|
17
|
+
"modal-mcp": "./dist/index.js"
|
|
18
|
+
},
|
|
19
|
+
"scripts": {
|
|
20
|
+
"build": "bun build ./src/index.ts --outdir ./dist --target bun",
|
|
21
|
+
"build:types": "tsc --noEmit --declaration --emitDeclarationOnly --outDir dist",
|
|
22
|
+
"dev": "bun run --watch src/index.ts",
|
|
23
|
+
"prepublishOnly": "bun run build && bun run build:types"
|
|
24
|
+
},
|
|
25
|
+
"dependencies": {
|
|
26
|
+
"@ebowwa/modal-wrapper": "^0.1.2",
|
|
27
|
+
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
28
|
+
"zod": "^3.24.0"
|
|
29
|
+
},
|
|
30
|
+
"devDependencies": {
|
|
31
|
+
"@types/bun": "^1.3.9",
|
|
32
|
+
"@types/node": "^22.10.2",
|
|
33
|
+
"typescript": "^5.7.2"
|
|
34
|
+
},
|
|
35
|
+
"engines": {
|
|
36
|
+
"node": ">=20.0.0"
|
|
37
|
+
},
|
|
38
|
+
"keywords": [
|
|
39
|
+
"mcp",
|
|
40
|
+
"modal",
|
|
41
|
+
"gpu",
|
|
42
|
+
"cloud",
|
|
43
|
+
"h100",
|
|
44
|
+
"a100",
|
|
45
|
+
"training",
|
|
46
|
+
"inference",
|
|
47
|
+
"robot"
|
|
48
|
+
],
|
|
49
|
+
"publishConfig": {
|
|
50
|
+
"access": "public",
|
|
51
|
+
"registry": "https://registry.npmjs.org"
|
|
52
|
+
},
|
|
53
|
+
"ownership": {
|
|
54
|
+
"domain": "mcp",
|
|
55
|
+
"responsibilities": [
|
|
56
|
+
"modal-mcp",
|
|
57
|
+
"gpu-cloud",
|
|
58
|
+
"ml-training",
|
|
59
|
+
"robot-inference"
|
|
60
|
+
]
|
|
61
|
+
}
|
|
62
|
+
}
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "ES2022",
|
|
4
|
+
"module": "ES2022",
|
|
5
|
+
"moduleResolution": "bundler",
|
|
6
|
+
"lib": ["ES2022"],
|
|
7
|
+
"types": ["node"],
|
|
8
|
+
"strict": false,
|
|
9
|
+
"noImplicitAny": false,
|
|
10
|
+
"strictNullChecks": false,
|
|
11
|
+
"strictFunctionTypes": false,
|
|
12
|
+
"strictBindCallApply": false,
|
|
13
|
+
"strictPropertyInitialization": false,
|
|
14
|
+
"noImplicitThis": false,
|
|
15
|
+
"alwaysStrict": false,
|
|
16
|
+
"noUnusedLocals": false,
|
|
17
|
+
"noUnusedParameters": false,
|
|
18
|
+
"noImplicitReturns": false,
|
|
19
|
+
"noFallthroughCasesInSwitch": false,
|
|
20
|
+
"esModuleInterop": true,
|
|
21
|
+
"skipLibCheck": true,
|
|
22
|
+
"forceConsistentCasingInFileNames": true,
|
|
23
|
+
"resolveJsonModule": true,
|
|
24
|
+
"allowSyntheticDefaultImports": true,
|
|
25
|
+
"declaration": true,
|
|
26
|
+
"outDir": "./dist",
|
|
27
|
+
"rootDir": "./src"
|
|
28
|
+
},
|
|
29
|
+
"include": ["src/**/*"],
|
|
30
|
+
"exclude": ["node_modules", "dist"]
|
|
31
|
+
}
|