forked from IvanMurzak/Unity-MCP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
51 lines (51 loc) · 1.54 KB
/
server.json
File metadata and controls
51 lines (51 loc) · 1.54 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-07-09/server.schema.json",
"name": "io.github.IvanMurzak/Unity-MCP",
"description": "Make 3D games in Unity Engine with AI. MCP Server + Plugin for Unity Editor and Unity games.",
"status": "active",
"repository": {
"url": "https://github.com/IvanMurzak/Unity-MCP",
"source": "github",
"subfolder": "Unity-MCP-Server"
},
"version": "0.55.1",
"packages": [
{
"registry_type": "oci",
"registry_base_url": "https://docker.io",
"identifier": "ivanmurzakdev/unity-mcp-server",
"version": "0.55.1",
"transport": {
"type": "stdio"
},
"environment_variables": [
{
"name": "MCP_PLUGIN_PORT",
"description": "Client -> Server <- Plugin connection port (default: 8080)",
"format": "number",
"is_required": false,
"is_secret": false
},
{
"name": "MCP_PLUGIN_CLIENT_TIMEOUT",
"description": "Plugin -> Server connection timeout (ms) (default: 10000)",
"format": "number",
"is_required": false,
"is_secret": false
},
{
"name": "MCP_PLUGIN_CLIENT_TRANSPORT",
"description": "Client -> Server transport type: stdio or streamableHttp (default: stdio)",
"format": "string",
"default": "stdio",
"enum": [
"streamableHttp",
"stdio"
],
"is_required": false,
"is_secret": false
}
]
}
]
}