Skip to content

Commit 7b25f7c

Browse files
committed
chore: bump version to 8.0.1
1 parent 2f50962 commit 7b25f7c

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

MCPForUnity/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "com.coplaydev.unity-mcp",
3-
"version": "8.0.0",
3+
"version": "8.0.1",
44
"displayName": "MCP for Unity",
55
"description": "A bridge that connects AI assistants to Unity via the MCP (Model Context Protocol). Allows AI clients like Claude Code, Cursor, and VSCode to directly control your Unity Editor for enhanced development workflows.\n\nFeatures automated setup wizard, cross-platform support, and seamless integration with popular AI development tools.\n\nJoin Our Discord: https://discord.gg/y4p8KfzrN4",
66
"unity": "2021.3",

README-zh.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ MCP for Unity 使用两个组件连接您的工具:
143143
3. 点击 `+` -> `Add package from git URL...`
144144
4. 输入:
145145
```
146-
https://github.com/CoplayDev/unity-mcp.git?path=/MCPForUnity#v8.0.0
146+
https://github.com/CoplayDev/unity-mcp.git?path=/MCPForUnity#v8.0.1
147147
```
148148
5. 点击 `Add`
149149

@@ -171,7 +171,7 @@ HTTP 传输默认启用。Unity 窗口可以为您启动 FastMCP 服务器:
171171
您也可以从终端自己启动服务器——对 CI 或当您想查看原始日志时很有用:
172172

173173
```bash
174-
uvx --from "git+https://github.com/CoplayDev/unity-mcp@v8.0.0#subdirectory=Server" mcp-for-unity --transport http --http-url http://localhost:8080
174+
uvx --from "git+https://github.com/CoplayDev/unity-mcp@v8.0.1#subdirectory=Server" mcp-for-unity --transport http --http-url http://localhost:8080
175175
```
176176

177177
在客户端连接时保持进程运行。

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ MCP for Unity connects your tools using two components:
144144
3. Click `+` -> `Add package from git URL...`.
145145
4. Enter:
146146
```
147-
https://github.com/CoplayDev/unity-mcp.git?path=/MCPForUnity#v8.0.0
147+
https://github.com/CoplayDev/unity-mcp.git?path=/MCPForUnity#v8.0.1
148148
```
149149
5. Click `Add`.
150150

@@ -172,7 +172,7 @@ HTTP transport is enabled out of the box. The Unity window can launch the FastMC
172172
You can also start the server yourself from a terminal—useful for CI or when you want to see raw logs:
173173
174174
```bash
175-
uvx --from "git+https://github.com/CoplayDev/unity-mcp@v8.0.0#subdirectory=Server" mcp-for-unity --transport http --http-url http://localhost:8080
175+
uvx --from "git+https://github.com/CoplayDev/unity-mcp@v8.0.1#subdirectory=Server" mcp-for-unity --transport http --http-url http://localhost:8080
176176
```
177177
178178
Keep the process running while clients are connected.

Server/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ Run directly from GitHub without installation:
2323

2424
```bash
2525
# HTTP (default)
26-
uvx --from git+https://github.com/CoplayDev/unity-mcp@v8.0.0#subdirectory=Server \
26+
uvx --from git+https://github.com/CoplayDev/unity-mcp@v8.0.1#subdirectory=Server \
2727
mcp-for-unity --transport http --http-url http://localhost:8080
2828

2929
# Stdio
30-
uvx --from git+https://github.com/CoplayDev/unity-mcp@v8.0.0#subdirectory=Server \
30+
uvx --from git+https://github.com/CoplayDev/unity-mcp@v8.0.1#subdirectory=Server \
3131
mcp-for-unity --transport stdio
3232
```
3333

@@ -52,7 +52,7 @@ uvx --from git+https://github.com/CoplayDev/unity-mcp@v8.0.0#subdirectory=Server
5252
"command": "uvx",
5353
"args": [
5454
"--from",
55-
"git+https://github.com/CoplayDev/unity-mcp@v8.0.0#subdirectory=Server",
55+
"git+https://github.com/CoplayDev/unity-mcp@v8.0.1#subdirectory=Server",
5656
"mcp-for-unity",
5757
"--transport",
5858
"stdio"

Server/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "MCPForUnityServer"
3-
version = "8.0.0"
3+
version = "8.0.1"
44
description = "MCP for Unity Server: A Unity package for Unity Editor integration via the Model Context Protocol (MCP)."
55
readme = "README.md"
66
requires-python = ">=3.10"

0 commit comments

Comments
 (0)