From 9356c1098afb222318866f5040ebfb8d4a25d233 Mon Sep 17 00:00:00 2001 From: Marcus Sanatan Date: Fri, 28 Nov 2025 22:41:05 -0400 Subject: [PATCH] Fix CLI entry point path in pyproject.toml Update mcp-for-unity script entry point from "main:main" to "src.main:main" to match the actual module structure after moving main.py into the src directory. --- Server/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Server/pyproject.toml b/Server/pyproject.toml index 6226fe49..3b33eba5 100644 --- a/Server/pyproject.toml +++ b/Server/pyproject.toml @@ -21,7 +21,7 @@ dev = [ ] [project.scripts] -mcp-for-unity = "main:main" +mcp-for-unity = "src.main:main" [build-system] requires = ["setuptools>=64.0.0", "wheel"]