-
Notifications
You must be signed in to change notification settings - Fork 851
Expand file tree
/
Copy pathmanifest.json
More file actions
181 lines (181 loc) · 5.15 KB
/
manifest.json
File metadata and controls
181 lines (181 loc) · 5.15 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
{
"manifest_version": "0.3",
"name": "Unity MCP",
"version": "9.5.3",
"description": "AI-powered Unity Editor automation via MCP - manage GameObjects, scripts, materials, scenes, prefabs, VFX, and run tests",
"author": {
"name": "Coplay",
"url": "https://www.coplay.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/CoplayDev/unity-mcp"
},
"homepage": "https://www.coplay.dev",
"documentation": "https://github.com/CoplayDev/unity-mcp#readme",
"support": "https://github.com/CoplayDev/unity-mcp/issues",
"icon": "coplay-logo.png",
"server": {
"type": "python",
"entry_point": "Server/src/main.py",
"mcp_config": {
"command": "uvx",
"args": [
"--from",
"mcpforunityserver",
"mcp-for-unity"
],
"env": {}
}
},
"tools": [
{
"name": "apply_text_edits",
"description": "Apply text edits to script content"
},
{
"name": "batch_execute",
"description": "Execute multiple Unity operations in a single batch"
},
{
"name": "create_script",
"description": "Create new C# scripts"
},
{
"name": "debug_request_context",
"description": "Debug and inspect MCP request context"
},
{
"name": "delete_script",
"description": "Delete C# scripts"
},
{
"name": "execute_custom_tool",
"description": "Execute custom Unity Editor tools registered by the project"
},
{
"name": "execute_menu_item",
"description": "Execute Unity Editor menu items"
},
{
"name": "find_gameobjects",
"description": "Find GameObjects in the scene by various criteria"
},
{
"name": "find_in_file",
"description": "Search for content within Unity project files"
},
{
"name": "get_sha",
"description": "Get SHA hash of script content"
},
{
"name": "get_test_job",
"description": "Get status of async test job"
},
{
"name": "manage_animation",
"description": "Manage Unity animation: Animator control, AnimatorController CRUD, and AnimationClip operations"
},
{
"name": "manage_asset",
"description": "Create, modify, search, and organize Unity assets"
},
{
"name": "manage_components",
"description": "Add, remove, and configure GameObject components"
},
{
"name": "manage_editor",
"description": "Control Unity Editor state, play mode, and preferences"
},
{
"name": "manage_gameobject",
"description": "Create, modify, transform, and delete GameObjects"
},
{
"name": "manage_camera",
"description": "Manage cameras (Unity Camera + Cinemachine) with presets, pipelines, and blending"
},
{
"name": "manage_graphics",
"description": "Manage rendering graphics: volumes, post-processing, light baking, rendering stats, pipeline settings, and URP renderer features"
},
{
"name": "manage_material",
"description": "Create and modify Unity materials and shaders"
},
{
"name": "manage_packages",
"description": "Modify Unity packages: install, remove, embed, and configure registries"
},
{
"name": "manage_prefabs",
"description": "Create, instantiate, unpack, and modify prefabs"
},
{
"name": "manage_probuilder",
"description": "Create and edit ProBuilder meshes, shapes, and geometry operations"
},
{
"name": "manage_scene",
"description": "Load, save, query hierarchy, and manage Unity scenes"
},
{
"name": "manage_script",
"description": "Create, read, and modify C# scripts"
},
{
"name": "manage_script_capabilities",
"description": "Query script management capabilities"
},
{
"name": "manage_scriptable_object",
"description": "Create and modify ScriptableObjects"
},
{
"name": "manage_shader",
"description": "Work with Unity shaders"
},
{
"name": "manage_texture",
"description": "Create and modify textures with patterns, gradients, and noise"
},
{
"name": "manage_tools",
"description": "Manage which tool groups are visible in this session"
},
{
"name": "manage_ui",
"description": "Manage Unity UI Toolkit elements (UXML documents, USS stylesheets, UIDocument components)"
},
{
"name": "manage_vfx",
"description": "Manage Visual Effects, particle systems, and trails"
},
{
"name": "read_console",
"description": "Read Unity Editor console output (logs, warnings, errors)"
},
{
"name": "refresh_unity",
"description": "Refresh Unity Editor asset database"
},
{
"name": "run_tests",
"description": "Run Unity Test Framework tests"
},
{
"name": "script_apply_edits",
"description": "Apply code edits to C# scripts with validation"
},
{
"name": "set_active_instance",
"description": "Set the active Unity Editor instance for multi-instance workflows"
},
{
"name": "validate_script",
"description": "Validate C# script syntax and compilation"
}
]
}