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
2 changes: 1 addition & 1 deletion addons/godot_mcp/Runtime/Connection/GodotMcpConnection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public sealed class GodotMcpConnection : IDisposable
/// drift if you forget). The live, parsed value in <see cref="PluginVersion"/> is the source of
/// truth; <see cref="ResolvePluginVersion"/> emits a warning whenever it has to fall back here.
/// </summary>
const string FallbackPluginVersion = "0.20.1";
const string FallbackPluginVersion = "0.21.0";

/// <summary>
/// Plugin version reported to the server in the MCP handshake. Resolved ONCE from
Expand Down
2 changes: 1 addition & 1 deletion addons/godot_mcp/Runtime/GodotMcpRuntime.cs
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ static string ResolvePluginVersion()
/// <c>version=</c> (the live parsed value above is the source of truth; this is only the degraded
/// fallback). Mirrors <c>GodotMcpConnection.FallbackPluginVersion</c>.
/// </summary>
const string FallbackPluginVersion = "0.20.1";
const string FallbackPluginVersion = "0.21.0";

/// <summary>
/// Ensure a <see cref="MainThreadDispatcher"/> Node exists in the running game's
Expand Down
2 changes: 1 addition & 1 deletion addons/godot_mcp/plugin.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
name="Godot-MCP"
description="Model Context Protocol (MCP) integration for the Godot Editor. AI tools in C#, cloud-connected to ai-game.dev."
author="Ivan Murzak"
version="0.20.1"
version="0.21.0"
script="Editor/GodotMcpPlugin.cs"
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": "godot-cli",
"version": "0.20.1",
"version": "0.21.0",
"description": "Cross-platform CLI tool for Godot-MCP (Skills & MCP). Resolves and launches the Godot editor with MCP connection env vars, runs MCP/system tools over HTTP, probes server health, configures AI agents (Claude Code, Cursor, VS Code, …), and enables/disables the godot_mcp addon. Works with Claude Code, Cursor, Copilot, and any MCP client.",
"type": "module",
"main": "dist/lib.js",
Expand Down
4 changes: 2 additions & 2 deletions docs/assetlib/SUBMISSION.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ this file is just the field values. Keep it in sync whenever any field changes.
| **Asset name** | `Godot-MCP` |
| **Category** | `Tools` (an Addon-side category — categories are split into Addons / Projects, and picking an Addon category is what makes this entry an Addon and surfaces it in the in-editor *AssetLib* tab; there is no separate "Type" field) |
| **Godot version** | `4.3` (lowest supported; the addon also runs on 4.4 / 4.5 — a single entry cannot carry multiple engine versions, so each version it should advertise needs its own resubmission) |
| **Version** | `0.20.1` (must match `addons/godot_mcp/plugin.cfg` `version=` and the `v0.20.1` tag) |
| **Version** | `0.21.0` (must match `addons/godot_mcp/plugin.cfg` `version=` and the `v0.21.0` tag) |
| **Repository host** | `GitHub` |
| **Repository URL** | `https://github.com/IvanMurzak/Godot-MCP` |
| **Issues URL** | `https://github.com/IvanMurzak/Godot-MCP/issues` |
| **Download Commit** | the commit hash the `v0.20.1` tag points at — get it with `git rev-list -n1 v0.20.1` (a hash, not the tag name) |
| **Download Commit** | the commit hash the `v0.21.0` tag points at — get it with `git rev-list -n1 v0.21.0` (a hash, not the tag name) |
| **License** | `Apache-2.0` |
| **Icon URL** | `https://raw.githubusercontent.com/IvanMurzak/Godot-MCP/main/addons/godot_mcp/icon.png` (square 512×512 PNG; AssetLib requires square PNG/JPG ≥ 128×128 — SVG is not accepted) |

Expand Down
Loading