From 2ad0be74ac5ca75020301ddd127f3affbd879419 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Mon, 8 Dec 2025 16:19:37 +0000 Subject: [PATCH] chore: bump version to 8.2.1 --- MCPForUnity/package.json | 2 +- Server/README.md | 6 +++--- Server/pyproject.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/MCPForUnity/package.json b/MCPForUnity/package.json index 2556d08..a22aca7 100644 --- a/MCPForUnity/package.json +++ b/MCPForUnity/package.json @@ -1,6 +1,6 @@ { "name": "com.coplaydev.unity-mcp", - "version": "8.2.0", + "version": "8.2.1", "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", "unity": "2021.3", diff --git a/Server/README.md b/Server/README.md index c892feb..4b63ee1 100644 --- a/Server/README.md +++ b/Server/README.md @@ -23,11 +23,11 @@ Run directly from GitHub without installation: ```bash # HTTP (default) -uvx --from git+https://github.com/CoplayDev/unity-mcp@v8.2.0#subdirectory=Server \ +uvx --from git+https://github.com/CoplayDev/unity-mcp@v8.2.1#subdirectory=Server \ mcp-for-unity --transport http --http-url http://localhost:8080 # Stdio -uvx --from git+https://github.com/CoplayDev/unity-mcp@v8.2.0#subdirectory=Server \ +uvx --from git+https://github.com/CoplayDev/unity-mcp@v8.2.1#subdirectory=Server \ mcp-for-unity --transport stdio ``` @@ -52,7 +52,7 @@ uvx --from git+https://github.com/CoplayDev/unity-mcp@v8.2.0#subdirectory=Server "command": "uvx", "args": [ "--from", - "git+https://github.com/CoplayDev/unity-mcp@v8.2.0#subdirectory=Server", + "git+https://github.com/CoplayDev/unity-mcp@v8.2.1#subdirectory=Server", "mcp-for-unity", "--transport", "stdio" diff --git a/Server/pyproject.toml b/Server/pyproject.toml index 026223d..7fa95e5 100644 --- a/Server/pyproject.toml +++ b/Server/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "MCPForUnityServer" -version = "8.2.0" +version = "8.2.1" description = "MCP for Unity Server: A Unity package for Unity Editor integration via the Model Context Protocol (MCP)." readme = "README.md" requires-python = ">=3.10"