chore: bump version to 8.0.1
parent
2f50962b58
commit
7b25f7ce3e
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "com.coplaydev.unity-mcp",
|
"name": "com.coplaydev.unity-mcp",
|
||||||
"version": "8.0.0",
|
"version": "8.0.1",
|
||||||
"displayName": "MCP for Unity",
|
"displayName": "MCP for Unity",
|
||||||
"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",
|
"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",
|
||||||
"unity": "2021.3",
|
"unity": "2021.3",
|
||||||
|
|
|
||||||
|
|
@ -143,7 +143,7 @@ MCP for Unity 使用两个组件连接您的工具:
|
||||||
3. 点击 `+` -> `Add package from git URL...`。
|
3. 点击 `+` -> `Add package from git URL...`。
|
||||||
4. 输入:
|
4. 输入:
|
||||||
```
|
```
|
||||||
https://github.com/CoplayDev/unity-mcp.git?path=/MCPForUnity#v8.0.0
|
https://github.com/CoplayDev/unity-mcp.git?path=/MCPForUnity#v8.0.1
|
||||||
```
|
```
|
||||||
5. 点击 `Add`。
|
5. 点击 `Add`。
|
||||||
|
|
||||||
|
|
@ -171,7 +171,7 @@ HTTP 传输默认启用。Unity 窗口可以为您启动 FastMCP 服务器:
|
||||||
您也可以从终端自己启动服务器——对 CI 或当您想查看原始日志时很有用:
|
您也可以从终端自己启动服务器——对 CI 或当您想查看原始日志时很有用:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
uvx --from "git+https://github.com/CoplayDev/unity-mcp@v8.0.0#subdirectory=Server" mcp-for-unity --transport http --http-url http://localhost:8080
|
uvx --from "git+https://github.com/CoplayDev/unity-mcp@v8.0.1#subdirectory=Server" mcp-for-unity --transport http --http-url http://localhost:8080
|
||||||
```
|
```
|
||||||
|
|
||||||
在客户端连接时保持进程运行。
|
在客户端连接时保持进程运行。
|
||||||
|
|
|
||||||
|
|
@ -144,7 +144,7 @@ MCP for Unity connects your tools using two components:
|
||||||
3. Click `+` -> `Add package from git URL...`.
|
3. Click `+` -> `Add package from git URL...`.
|
||||||
4. Enter:
|
4. Enter:
|
||||||
```
|
```
|
||||||
https://github.com/CoplayDev/unity-mcp.git?path=/MCPForUnity#v8.0.0
|
https://github.com/CoplayDev/unity-mcp.git?path=/MCPForUnity#v8.0.1
|
||||||
```
|
```
|
||||||
5. Click `Add`.
|
5. Click `Add`.
|
||||||
|
|
||||||
|
|
@ -172,7 +172,7 @@ HTTP transport is enabled out of the box. The Unity window can launch the FastMC
|
||||||
You can also start the server yourself from a terminal—useful for CI or when you want to see raw logs:
|
You can also start the server yourself from a terminal—useful for CI or when you want to see raw logs:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
uvx --from "git+https://github.com/CoplayDev/unity-mcp@v8.0.0#subdirectory=Server" mcp-for-unity --transport http --http-url http://localhost:8080
|
uvx --from "git+https://github.com/CoplayDev/unity-mcp@v8.0.1#subdirectory=Server" mcp-for-unity --transport http --http-url http://localhost:8080
|
||||||
```
|
```
|
||||||
|
|
||||||
Keep the process running while clients are connected.
|
Keep the process running while clients are connected.
|
||||||
|
|
|
||||||
|
|
@ -23,11 +23,11 @@ Run directly from GitHub without installation:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# HTTP (default)
|
# HTTP (default)
|
||||||
uvx --from git+https://github.com/CoplayDev/unity-mcp@v8.0.0#subdirectory=Server \
|
uvx --from git+https://github.com/CoplayDev/unity-mcp@v8.0.1#subdirectory=Server \
|
||||||
mcp-for-unity --transport http --http-url http://localhost:8080
|
mcp-for-unity --transport http --http-url http://localhost:8080
|
||||||
|
|
||||||
# Stdio
|
# Stdio
|
||||||
uvx --from git+https://github.com/CoplayDev/unity-mcp@v8.0.0#subdirectory=Server \
|
uvx --from git+https://github.com/CoplayDev/unity-mcp@v8.0.1#subdirectory=Server \
|
||||||
mcp-for-unity --transport stdio
|
mcp-for-unity --transport stdio
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
@ -52,7 +52,7 @@ uvx --from git+https://github.com/CoplayDev/unity-mcp@v8.0.0#subdirectory=Server
|
||||||
"command": "uvx",
|
"command": "uvx",
|
||||||
"args": [
|
"args": [
|
||||||
"--from",
|
"--from",
|
||||||
"git+https://github.com/CoplayDev/unity-mcp@v8.0.0#subdirectory=Server",
|
"git+https://github.com/CoplayDev/unity-mcp@v8.0.1#subdirectory=Server",
|
||||||
"mcp-for-unity",
|
"mcp-for-unity",
|
||||||
"--transport",
|
"--transport",
|
||||||
"stdio"
|
"stdio"
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[project]
|
[project]
|
||||||
name = "MCPForUnityServer"
|
name = "MCPForUnityServer"
|
||||||
version = "8.0.0"
|
version = "8.0.1"
|
||||||
description = "MCP for Unity Server: A Unity package for Unity Editor integration via the Model Context Protocol (MCP)."
|
description = "MCP for Unity Server: A Unity package for Unity Editor integration via the Model Context Protocol (MCP)."
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.10"
|
requires-python = ">=3.10"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue