remote-debug-mcp 0.2.0__tar.gz → 0.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: remote-debug-mcp
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: MCP server for remote debugging via SSH and Telnet with persistent background connections
5
5
  Project-URL: Homepage, https://github.com/user/remote-debug-mcp
6
6
  Project-URL: Repository, https://github.com/user/remote-debug-mcp
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "remote-debug-mcp"
7
- version = "0.2.0"
7
+ version = "0.2.1"
8
8
  description = "MCP server for remote debugging via SSH and Telnet with persistent background connections"
9
9
  readme = "README.md"
10
10
  license = {file = "LICENSE"}
@@ -0,0 +1,7 @@
1
+ import asyncio
2
+ from remote_debug_mcp.server import main as _main
3
+
4
+ def main():
5
+ asyncio.run(_main())
6
+
7
+ __all__ = ["main"]
@@ -1,3 +0,0 @@
1
- from remote_debug_mcp.server import main
2
-
3
- __all__ = ["main"]