coplay-mcp-server 1.2.0__tar.gz → 1.2.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of coplay-mcp-server might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: coplay-mcp-server
3
- Version: 1.2.0
3
+ Version: 1.2.1
4
4
  Summary: A Model Context Protocol (MCP) server for Coplay, providing Unity integration capabilities
5
5
  Project-URL: Homepage, https://coplay.dev/
6
6
  Project-URL: Repository, https://github.com/CoplayDev/coplay-unity-plugin
@@ -57,10 +57,6 @@ Add to your MCP client configuration:
57
57
  "type": "stdio",
58
58
  "command": "uvx",
59
59
  "args": [
60
- "--index-url",
61
- "https://test.pypi.org/simple/",
62
- "--extra-index-url",
63
- "https://pypi.org/simple/",
64
60
  "coplay-mcp-server@latest"
65
61
  ]
66
62
  }
@@ -27,10 +27,6 @@ Add to your MCP client configuration:
27
27
  "type": "stdio",
28
28
  "command": "uvx",
29
29
  "args": [
30
- "--index-url",
31
- "https://test.pypi.org/simple/",
32
- "--extra-index-url",
33
- "https://pypi.org/simple/",
34
30
  "coplay-mcp-server@latest"
35
31
  ]
36
32
  }
@@ -1,3 +1,3 @@
1
1
  """Coplay MCP Server - Unity Editor integration via MCP protocol."""
2
2
 
3
- __version__ = "1.2.0"
3
+ __version__ = "1.2.1"
@@ -92,7 +92,6 @@ def _discover_from_temp_dirs() -> List[str]:
92
92
  temp_paths.append(Path(tempfile.gettempdir()))
93
93
  # Also check AppData/Local
94
94
  try:
95
- from pathlib import Path
96
95
  appdata_local = Path.home() / "AppData" / "Local"
97
96
  if appdata_local.exists():
98
97
  temp_paths.append(appdata_local)
@@ -14,10 +14,7 @@ from .unity_client import UnityRpcClient
14
14
 
15
15
  def setup_logging() -> None:
16
16
  """Set up logging configuration."""
17
- # Create logs directory if it doesn't exist
18
- log_dir = Path(__file__).parent.parent / "logs"
19
- log_dir.mkdir(exist_ok=True)
20
-
17
+
21
18
  # Configure logging
22
19
  logging.basicConfig(
23
20
  level=logging.INFO,
@@ -25,8 +22,6 @@ def setup_logging() -> None:
25
22
  handlers=[
26
23
  # Log errors to stderr (visible to MCP client)
27
24
  logging.StreamHandler(sys.stderr),
28
- # Log all messages to file
29
- logging.FileHandler(log_dir / "coplay-mcp-server.log"),
30
25
  ]
31
26
  )
32
27