Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace com.IvanMurzak.Unity.MCP.Installer
public static partial class Installer
{
public const string PackageId = "com.ivanmurzak.unity.mcp";
public const string Version = "0.77.1";
public const string Version = "0.77.2";

static Installer()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ namespace com.IvanMurzak.Unity.MCP

public partial class UnityMcpPlugin : IDisposable
{
public const string Version = "0.77.1";
public const string Version = "0.77.2";

private static int _singletonCount = 0;
public static bool HasAnyInstance => _singletonCount > 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"Unity MCP",
"Unity Skills"
],
"version": "0.77.1",
"version": "0.77.2",
"unity": "2022.3",
"description": "AI Skills, MCP Tools, and CLI for Unity Engine. Full AI develop and test loop. Use cli for quick setup. Efficient token usage, advanced tools. Any C# method may be turned into a tool by a single line. Works with Claude Code, Gemini, Copilot, Cursor and any other absolutely for free.",
"documentationUrl": "https://github.com/IvanMurzak/Unity-MCP/blob/main/README.md",
Expand Down
4 changes: 2 additions & 2 deletions Unity-MCP-Server/com.IvanMurzak.Unity.MCP.Server.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<PackAsTool>true</PackAsTool>
<ToolCommandName>unity-mcp-server</ToolCommandName>
<PackageId>com.IvanMurzak.Unity.MCP.Server</PackageId>
<Version>0.77.1</Version>
<Version>0.77.2</Version>
<Authors>Ivan Murzak</Authors>
<Company>Ivan Murzak</Company>
<Copyright>Copyright © 2025 Ivan Murzak</Copyright>
Expand Down Expand Up @@ -46,7 +46,7 @@

<ItemGroup Condition="'$(UseLocalMcpPlugin)' != 'true'">
<PackageReference Include="com.IvanMurzak.ReflectorNet" Version="5.3.1" />
<PackageReference Include="com.IvanMurzak.McpPlugin.Server" Version="6.5.4" />
<PackageReference Include="com.IvanMurzak.McpPlugin.Server" Version="6.5.5" />
</ItemGroup>

<ItemGroup Condition="'$(UseLocalMcpPlugin)' == 'true'">
Expand Down
4 changes: 2 additions & 2 deletions Unity-MCP-Server/server.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
"source": "github",
"subfolder": "Unity-MCP-Server"
},
"version": "0.77.1",
"version": "0.77.2",
"packages": [
{
"registry_type": "oci",
"registry_base_url": "https://docker.io",
"identifier": "ivanmurzakdev/unity-mcp-server",
"version": "0.77.1",
"version": "0.77.2",
"transport": {
"type": "stdio"
},
Expand Down
4 changes: 2 additions & 2 deletions cli/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "unity-mcp-cli",
"version": "0.77.1",
"version": "0.77.2",
"description": "Cross-platform CLI tool for AI Game Developer (Skills & MCP). Full AI develop and test loop. Efficient token usage, advanced tools. Creates Unity project, installs plugins, configures tools, and manages HTTP connection with Unity Editor and a game made with Unity. Works with Claude Code, Gemini, Copilot, Cursor and any other absolutely for free.",
"type": "module",
"main": "dist/lib.js",
Expand Down
Loading