-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 941 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 941 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
{
"name": "gm-exec",
"version": "3.4.150",
"description": "MCP GM - Code execution tool for MCP clients. Multi-language support (JS/TS, Go, Rust, Python, C/C++, bash). Works with Claude Code, Cursor, Copilot, VSCode.",
"main": "src/index.js",
"type": "module",
"bin": {
"gm-exec": "src/index.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "bun run src/index.js",
"dev": "bun run src/index.js ./test",
"test": "bun test"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.18.2"
},
"engines": {
"bun": ">=1.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AnEntrypoint/gm-exec.git"
},
"keywords": [
"mcp",
"code-execution",
"javascript",
"typescript",
"go",
"rust",
"python",
"c",
"cpp",
"bash"
],
"author": "",
"license": "MIT",
"mcpName": "io.github.AnEntrypoint/gm-exec"
}