-
-
Notifications
You must be signed in to change notification settings - Fork 375
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.11 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.11 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
{
"name": "godot-mcp",
"version": "0.1.1",
"description": "MCP server for interfacing with Godot game engine. Provides tools for launching the editor, running projects, and capturing debug output.",
"keywords": [
"godot",
"mcp",
"ai",
"claude",
"cline"
],
"homepage": "https://github.com/Coding-Solo/godot-mcp",
"bugs": {
"url": "https://github.com/Coding-Solo/godot-mcp/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Coding-Solo/godot-mcp.git"
},
"license": "MIT",
"author": "Solomon Elias <solomon@sippy.ai>",
"type": "module",
"bin": {
"godot-mcp": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc && node scripts/build.js",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"prepare": "npm run build",
"watch": "tsc --watch"
},
"dependencies": {
"@modelcontextprotocol/sdk": "0.6.0",
"axios": "^1.7.9",
"fs-extra": "^11.2.0"
},
"devDependencies": {
"@types/node": "^20.11.24",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}