Skip to content

Commit 40ec94b

Browse files
committed
Add Godot MCP server
Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> Claude-Session: https://claude.ai/code/session_01S58U7phvDgphx6ZTXuWMJQ
1 parent 14015a9 commit 40ec94b

1 file changed

Lines changed: 68 additions & 0 deletions

File tree

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "codingsolo.godot-mcp-npx",
4+
"name": "Godot (npx)",
5+
"alias": "godot",
6+
"description": "Interface with the Godot game engine: launch the editor, run projects, capture debug output, inspect project structure, and manage scenes, nodes, sprites, MeshLibrary exports, and Godot 4.4+ UIDs.",
7+
"logo": "https://avatars.githubusercontent.com/u/60202842?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"developer-tools",
11+
"design"
12+
],
13+
"tags": [
14+
"godot",
15+
"game-engine",
16+
"game-development",
17+
"gamedev",
18+
"godot-engine",
19+
"scenes"
20+
],
21+
"transport": {
22+
"type": "stdio",
23+
"command": "npx",
24+
"args": [
25+
"-y",
26+
"@coding-solo/godot-mcp"
27+
],
28+
"env": {
29+
"GODOT_PATH": "${input:GODOT_PATH}"
30+
},
31+
"metadata": {
32+
"inputs": [
33+
{
34+
"id": "GODOT_PATH",
35+
"label": "Godot Executable Path",
36+
"description": "Optional path to the Godot executable. Overrides the server's automatic detection. Leave empty to let the server locate Godot on its own.",
37+
"type": "file_path",
38+
"required": false,
39+
"secret": false,
40+
"placeholder": "C:\\Program Files\\Godot\\Godot.exe or /usr/local/bin/godot"
41+
}
42+
]
43+
}
44+
},
45+
"auth": {
46+
"type": "none"
47+
},
48+
"contributor": {
49+
"name": "Coding-Solo",
50+
"github": "Coding-Solo",
51+
"url": "https://github.com/Coding-Solo/godot-mcp"
52+
},
53+
"links": {
54+
"repository": "https://github.com/Coding-Solo/godot-mcp",
55+
"homepage": "https://github.com/Coding-Solo/godot-mcp",
56+
"documentation": "https://github.com/Coding-Solo/godot-mcp#readme"
57+
},
58+
"platforms": [
59+
"all"
60+
],
61+
"capabilities": {
62+
"tools": true,
63+
"resources": false,
64+
"prompts": false,
65+
"read_only_mode": false
66+
},
67+
"changelog_url": "https://github.com/Coding-Solo/godot-mcp/releases"
68+
}

0 commit comments

Comments
 (0)