Skip to content

Commit 0b3dcd4

Browse files
renamed package to match github repo
1 parent ac81feb commit 0b3dcd4

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Editor/MCPEditorWindow.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ private void ConfigureClaudeDesktop()
287287
else
288288
{
289289
// If not found locally, try to find it in the package cache
290-
string packageName = "com.justinpbarnett.unitymcpserver";
290+
string packageName = "com.justinpbarnett.unity-mcp";
291291
string packageCachePath = Path.Combine(Application.dataPath, "..", "Library", "PackageCache", packageName);
292292
if (Directory.Exists(packageCachePath))
293293
{

Python/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
level=getattr(logging, config.log_level),
1313
format=config.log_format
1414
)
15-
logger = logging.getLogger("UnityMCPServer")
15+
logger = logging.getLogger("UnityMCP")
1616

1717
# Global connection state
1818
_unity_connection: UnityConnection = None

Python/unity_connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
level=getattr(logging, config.log_level),
1111
format=config.log_format
1212
)
13-
logger = logging.getLogger("UnityMCPServer")
13+
logger = logging.getLogger("UnityMCP")
1414

1515
@dataclass
1616
class UnityConnection:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "com.justinpbarnett.unitymcpserver",
2+
"name": "com.justinpbarnett.unity-mcp",
33
"version": "0.1.0",
44
"displayName": "Unity MCP Server",
55
"description": "A Unity package to communicate with a local MCP Client via a Python server.",

0 commit comments

Comments
 (0)