computer-control-mcp 0.2.4__tar.gz → 0.2.5__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: computer-control-mcp
3
- Version: 0.2.4
3
+ Version: 0.2.5
4
4
  Summary: Computer control capabilities using PyAutoGUI through a Model Context Protocol (MCP) server
5
5
  Project-URL: Homepage, https://github.com/AB498/computer-control-mcp
6
6
  Project-URL: Issues, https://github.com/AB498/computer-control-mcp/issues
@@ -121,7 +121,7 @@ def main():
121
121
 
122
122
  else:
123
123
  # When no command is specified, run the server by default
124
- print("No command specified. Starting the MCP server...")
124
+ print("MCP server started!")
125
125
  run_server()
126
126
 
127
127
  if __name__ == "__main__":
@@ -149,7 +149,7 @@ def _find_matching_window(
149
149
  @mcp.tool()
150
150
  def tool_version() -> str:
151
151
  """Get the version of the tool."""
152
- return "0.2.4"
152
+ return "0.2.5"
153
153
 
154
154
 
155
155
  @mcp.tool()
@@ -513,7 +513,6 @@ def main():
513
513
  try:
514
514
  # Run the server
515
515
  mcp.run()
516
- print("Server Started")
517
516
 
518
517
  except KeyboardInterrupt:
519
518
  log("Server shutting down...")
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "computer-control-mcp"
7
- version = "0.2.4"
7
+ version = "0.2.5"
8
8
  description = "Computer control capabilities using PyAutoGUI through a Model Context Protocol (MCP) server"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.12"