Skip to content

Commit 3a9ec4f

Browse files
authored
docs: replace "Unity MCP" with "MCP for Unity" in all text strings (#314)
1 parent 6b0ee30 commit 3a9ec4f

22 files changed

+38
-38
lines changed

MCPForUnity/Editor/Dependencies/PlatformDetectors/LinuxPlatformDetector.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ public override string GetInstallationRecommendations()
9797
- Run: curl -LsSf https://astral.sh/uv/install.sh | sh
9898
- Or download from: https://github.com/astral-sh/uv/releases
9999
100-
3. MCP Server: Will be installed automatically by Unity MCP Bridge
100+
3. MCP Server: Will be installed automatically by MCP for Unity
101101
102102
Note: Make sure ~/.local/bin is in your PATH for user-local installations.";
103103
}

MCPForUnity/Editor/Dependencies/PlatformDetectors/MacOSPlatformDetector.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ public override string GetInstallationRecommendations()
9898
- Curl: curl -LsSf https://astral.sh/uv/install.sh | sh
9999
- Homebrew: brew install uv
100100
101-
3. MCP Server: Will be installed automatically by Unity MCP Bridge
101+
3. MCP Server: Will be installed automatically by MCP for Unity Bridge
102102
103103
Note: If using Homebrew, make sure /opt/homebrew/bin is in your PATH.";
104104
}

MCPForUnity/Editor/Dependencies/PlatformDetectors/WindowsPlatformDetector.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public override string GetInstallationRecommendations()
101101
- Run: powershell -ExecutionPolicy ByPass -c ""irm https://astral.sh/uv/install.ps1 | iex""
102102
- Or download from: https://github.com/astral-sh/uv/releases
103103
104-
3. MCP Server: Will be installed automatically by Unity MCP Bridge";
104+
3. MCP Server: Will be installed automatically by MCP for Unity Bridge";
105105
}
106106

107107
private bool TryValidatePython(string pythonPath, out string version, out string fullPath)

MCPForUnity/Editor/Services/IBridgeControlService.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
namespace MCPForUnity.Editor.Services
22
{
33
/// <summary>
4-
/// Service for controlling the Unity MCP Bridge connection
4+
/// Service for controlling the MCP for Unity Bridge connection
55
/// </summary>
66
public interface IBridgeControlService
77
{
@@ -21,12 +21,12 @@ public interface IBridgeControlService
2121
bool IsAutoConnectMode { get; }
2222

2323
/// <summary>
24-
/// Starts the Unity MCP Bridge
24+
/// Starts the MCP for Unity Bridge
2525
/// </summary>
2626
void Start();
2727

2828
/// <summary>
29-
/// Stops the Unity MCP Bridge
29+
/// Stops the MCP for Unity Bridge
3030
/// </summary>
3131
void Stop();
3232

MCPForUnity/Editor/Services/IClientConfigurationService.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ public interface IClientConfigurationService
2828
bool CheckClientStatus(McpClient client, bool attemptAutoRewrite = true);
2929

3030
/// <summary>
31-
/// Registers Unity MCP with Claude Code CLI
31+
/// Registers MCP for Unity with Claude Code CLI
3232
/// </summary>
3333
void RegisterClaudeCode();
3434

3535
/// <summary>
36-
/// Unregisters Unity MCP from Claude Code CLI
36+
/// Unregisters MCP for Unity from Claude Code CLI
3737
/// </summary>
3838
void UnregisterClaudeCode();
3939

MCPForUnity/UnityMcpServer~/src/telemetry.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Privacy-focused, anonymous telemetry system for Unity MCP
2+
Privacy-focused, anonymous telemetry system for MCP for Unity
33
Inspired by Onyx's telemetry implementation with Unity-specific adaptations
44
55
Fire-and-forget telemetry sender with a single background worker.
@@ -328,7 +328,7 @@ def _send_telemetry(self, record: TelemetryRecord):
328328
"customer_uuid": record.customer_uuid,
329329
"session_id": record.session_id,
330330
"data": enriched_data,
331-
"version": "3.0.2", # Unity MCP version
331+
"version": "3.0.2", # MCP for Unity version
332332
"platform": _platform,
333333
"source": _source,
334334
}

MCPForUnity/UnityMcpServer~/src/telemetry_decorator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Telemetry decorator for Unity MCP tools
2+
Telemetry decorator for MCP for Unity tools
33
"""
44

55
import functools

MCPForUnity/UnityMcpServer~/src/test_telemetry.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22
"""
3-
Test script for Unity MCP Telemetry System
3+
Test script for MCP for Unity Telemetry System
44
Run this to verify telemetry is working correctly
55
"""
66

MCPForUnity/UnityMcpServer~/src/tools/resource_tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ async def read_resource(
208208
if uri in ("unity://spec/script-edits", "spec/script-edits", "script-edits"):
209209
spec_json = (
210210
'{\n'
211-
' "name": "Unity MCP - Script Edits v1",\n'
211+
' "name": "MCP for Unity - Script Edits v1",\n'
212212
' "target_tool": "script_apply_edits",\n'
213213
' "canonical_rules": {\n'
214214
' "always_use": ["op","className","methodName","replacement","afterMethodName","beforeMethodName"],\n'

MCPForUnity/UnityMcpServer~/src/unity_connection.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,19 +84,19 @@ def connect(self) -> bool:
8484
if 'FRAMING=1' in text:
8585
self.use_framing = True
8686
logger.debug(
87-
'Unity MCP handshake received: FRAMING=1 (strict)')
87+
'MCP for Unity handshake received: FRAMING=1 (strict)')
8888
else:
8989
if require_framing:
9090
# Best-effort plain-text advisory for legacy peers
9191
with contextlib.suppress(Exception):
9292
self.sock.sendall(
93-
b'Unity MCP requires FRAMING=1\n')
93+
b'MCP for Unity requires FRAMING=1\n')
9494
raise ConnectionError(
95-
f'Unity MCP requires FRAMING=1, got: {text!r}')
95+
f'MCP for Unity requires FRAMING=1, got: {text!r}')
9696
else:
9797
self.use_framing = False
9898
logger.warning(
99-
'Unity MCP handshake missing FRAMING=1; proceeding in legacy mode by configuration')
99+
'MCP for Unity handshake missing FRAMING=1; proceeding in legacy mode by configuration')
100100
finally:
101101
self.sock.settimeout(config.connection_timeout)
102102
return True

0 commit comments

Comments
 (0)