ai-coding-gym-mcp 0.1.5__tar.gz → 0.1.6__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: ai-coding-gym-mcp
3
- Version: 0.1.5
3
+ Version: 0.1.6
4
4
  Summary: MCP server for AI Coding Gym - fetch and submit coding challenges
5
5
  Home-page: https://github.com/yourusername/ai-coding-gym-mcp
6
6
  Author: AICodingGym Team
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ai-coding-gym-mcp
3
- Version: 0.1.5
3
+ Version: 0.1.6
4
4
  Summary: MCP server for AI Coding Gym - fetch and submit coding challenges
5
5
  Home-page: https://github.com/yourusername/ai-coding-gym-mcp
6
6
  Author: AICodingGym Team
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "ai-coding-gym-mcp"
3
- version = "0.1.5"
3
+ version = "0.1.6"
4
4
  description = "MCP server for AI Coding Gym - fetch and submit coding challenges"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
@@ -392,6 +392,10 @@ Your solution has been submitted for evaluation!
392
392
  return f"Error: Unexpected error: {str(e)}"
393
393
 
394
394
 
395
- if __name__ == "__main__":
396
- # Initialize and run the server
395
+ def main():
396
+ """Entry point for the MCP server."""
397
397
  mcp.run(transport='stdio')
398
+
399
+
400
+ if __name__ == "__main__":
401
+ main()
@@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
5
5
 
6
6
  setup(
7
7
  name="ai-coding-gym-mcp",
8
- version="0.1.5",
8
+ version="0.1.6",
9
9
  author="AICodingGym Team",
10
10
  author_email="datasmithlab@gmail.com",
11
11
  description="MCP server for AI Coding Gym - fetch and submit AI coding challenges",