ai-coding-gym-mcp 0.1.3__tar.gz → 0.1.4__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.
- {ai_coding_gym_mcp-0.1.3 → ai_coding_gym_mcp-0.1.4}/PKG-INFO +33 -10
- {ai_coding_gym_mcp-0.1.3 → ai_coding_gym_mcp-0.1.4}/README.md +32 -9
- {ai_coding_gym_mcp-0.1.3 → ai_coding_gym_mcp-0.1.4}/ai_coding_gym_mcp.egg-info/PKG-INFO +33 -10
- {ai_coding_gym_mcp-0.1.3 → ai_coding_gym_mcp-0.1.4}/ai_coding_gym_mcp.egg-info/entry_points.txt +1 -0
- {ai_coding_gym_mcp-0.1.3 → ai_coding_gym_mcp-0.1.4}/pyproject.toml +2 -1
- {ai_coding_gym_mcp-0.1.3 → ai_coding_gym_mcp-0.1.4}/setup.py +2 -1
- {ai_coding_gym_mcp-0.1.3 → ai_coding_gym_mcp-0.1.4}/ai_coding_gym_mcp.egg-info/SOURCES.txt +0 -0
- {ai_coding_gym_mcp-0.1.3 → ai_coding_gym_mcp-0.1.4}/ai_coding_gym_mcp.egg-info/dependency_links.txt +0 -0
- {ai_coding_gym_mcp-0.1.3 → ai_coding_gym_mcp-0.1.4}/ai_coding_gym_mcp.egg-info/requires.txt +0 -0
- {ai_coding_gym_mcp-0.1.3 → ai_coding_gym_mcp-0.1.4}/ai_coding_gym_mcp.egg-info/top_level.txt +0 -0
- {ai_coding_gym_mcp-0.1.3 → ai_coding_gym_mcp-0.1.4}/server.py +0 -0
- {ai_coding_gym_mcp-0.1.3 → ai_coding_gym_mcp-0.1.4}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ai-coding-gym-mcp
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
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
|
|
@@ -61,15 +61,45 @@ Add to your Claude Desktop config (`~/Library/Application Support/Claude/claude_
|
|
|
61
61
|
```json
|
|
62
62
|
{
|
|
63
63
|
"mcpServers": {
|
|
64
|
+
"ai-coding-gym": {
|
|
65
|
+
"command": "ai-coding-gym-mcp"
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
### Configure VS Code (Copilot with MCP)
|
|
72
|
+
|
|
73
|
+
Add to your VS Code settings (`.vscode/settings.json` or User Settings):
|
|
74
|
+
|
|
75
|
+
```json
|
|
76
|
+
{
|
|
77
|
+
"github.copilot.chat.codeGeneration.instructions": [
|
|
78
|
+
{
|
|
79
|
+
"text": "Use AI Coding Gym MCP tools for problem solving"
|
|
80
|
+
}
|
|
81
|
+
],
|
|
82
|
+
"mcp.servers": {
|
|
64
83
|
"ai-coding-gym": {
|
|
65
84
|
"command": "python",
|
|
66
|
-
"args": ["-m", "server"]
|
|
85
|
+
"args": ["-m", "server"],
|
|
86
|
+
"cwd": "/path/to/ai-coding-gym-mcp"
|
|
67
87
|
}
|
|
68
88
|
}
|
|
69
89
|
}
|
|
70
90
|
```
|
|
71
91
|
|
|
72
|
-
|
|
92
|
+
Or if installed via pip, use the executable directly:
|
|
93
|
+
|
|
94
|
+
```json
|
|
95
|
+
{
|
|
96
|
+
"mcp.servers": {
|
|
97
|
+
"ai-coding-gym": {
|
|
98
|
+
"command": "ai-coding-gym-mcp"
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
```
|
|
73
103
|
|
|
74
104
|
## Usage
|
|
75
105
|
|
|
@@ -212,13 +242,6 @@ The MCP server connects to the hardcoded AI Coding Gym server and uses the follo
|
|
|
212
242
|
**"Directory already exists"**
|
|
213
243
|
- Remove the existing directory or use a different workspace location
|
|
214
244
|
|
|
215
|
-
## Publishing
|
|
216
|
-
|
|
217
|
-
See [PUBLISHING.md](PUBLISHING.md) for instructions on:
|
|
218
|
-
- Publishing to PyPI
|
|
219
|
-
- Publishing to GitHub
|
|
220
|
-
- Version management
|
|
221
|
-
- Release workflow
|
|
222
245
|
|
|
223
246
|
## Development
|
|
224
247
|
|
|
@@ -35,15 +35,45 @@ Add to your Claude Desktop config (`~/Library/Application Support/Claude/claude_
|
|
|
35
35
|
```json
|
|
36
36
|
{
|
|
37
37
|
"mcpServers": {
|
|
38
|
+
"ai-coding-gym": {
|
|
39
|
+
"command": "ai-coding-gym-mcp"
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
### Configure VS Code (Copilot with MCP)
|
|
46
|
+
|
|
47
|
+
Add to your VS Code settings (`.vscode/settings.json` or User Settings):
|
|
48
|
+
|
|
49
|
+
```json
|
|
50
|
+
{
|
|
51
|
+
"github.copilot.chat.codeGeneration.instructions": [
|
|
52
|
+
{
|
|
53
|
+
"text": "Use AI Coding Gym MCP tools for problem solving"
|
|
54
|
+
}
|
|
55
|
+
],
|
|
56
|
+
"mcp.servers": {
|
|
38
57
|
"ai-coding-gym": {
|
|
39
58
|
"command": "python",
|
|
40
|
-
"args": ["-m", "server"]
|
|
59
|
+
"args": ["-m", "server"],
|
|
60
|
+
"cwd": "/path/to/ai-coding-gym-mcp"
|
|
41
61
|
}
|
|
42
62
|
}
|
|
43
63
|
}
|
|
44
64
|
```
|
|
45
65
|
|
|
46
|
-
|
|
66
|
+
Or if installed via pip, use the executable directly:
|
|
67
|
+
|
|
68
|
+
```json
|
|
69
|
+
{
|
|
70
|
+
"mcp.servers": {
|
|
71
|
+
"ai-coding-gym": {
|
|
72
|
+
"command": "ai-coding-gym-mcp"
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
```
|
|
47
77
|
|
|
48
78
|
## Usage
|
|
49
79
|
|
|
@@ -186,13 +216,6 @@ The MCP server connects to the hardcoded AI Coding Gym server and uses the follo
|
|
|
186
216
|
**"Directory already exists"**
|
|
187
217
|
- Remove the existing directory or use a different workspace location
|
|
188
218
|
|
|
189
|
-
## Publishing
|
|
190
|
-
|
|
191
|
-
See [PUBLISHING.md](PUBLISHING.md) for instructions on:
|
|
192
|
-
- Publishing to PyPI
|
|
193
|
-
- Publishing to GitHub
|
|
194
|
-
- Version management
|
|
195
|
-
- Release workflow
|
|
196
219
|
|
|
197
220
|
## Development
|
|
198
221
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ai-coding-gym-mcp
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
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
|
|
@@ -61,15 +61,45 @@ Add to your Claude Desktop config (`~/Library/Application Support/Claude/claude_
|
|
|
61
61
|
```json
|
|
62
62
|
{
|
|
63
63
|
"mcpServers": {
|
|
64
|
+
"ai-coding-gym": {
|
|
65
|
+
"command": "ai-coding-gym-mcp"
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
### Configure VS Code (Copilot with MCP)
|
|
72
|
+
|
|
73
|
+
Add to your VS Code settings (`.vscode/settings.json` or User Settings):
|
|
74
|
+
|
|
75
|
+
```json
|
|
76
|
+
{
|
|
77
|
+
"github.copilot.chat.codeGeneration.instructions": [
|
|
78
|
+
{
|
|
79
|
+
"text": "Use AI Coding Gym MCP tools for problem solving"
|
|
80
|
+
}
|
|
81
|
+
],
|
|
82
|
+
"mcp.servers": {
|
|
64
83
|
"ai-coding-gym": {
|
|
65
84
|
"command": "python",
|
|
66
|
-
"args": ["-m", "server"]
|
|
85
|
+
"args": ["-m", "server"],
|
|
86
|
+
"cwd": "/path/to/ai-coding-gym-mcp"
|
|
67
87
|
}
|
|
68
88
|
}
|
|
69
89
|
}
|
|
70
90
|
```
|
|
71
91
|
|
|
72
|
-
|
|
92
|
+
Or if installed via pip, use the executable directly:
|
|
93
|
+
|
|
94
|
+
```json
|
|
95
|
+
{
|
|
96
|
+
"mcp.servers": {
|
|
97
|
+
"ai-coding-gym": {
|
|
98
|
+
"command": "ai-coding-gym-mcp"
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
```
|
|
73
103
|
|
|
74
104
|
## Usage
|
|
75
105
|
|
|
@@ -212,13 +242,6 @@ The MCP server connects to the hardcoded AI Coding Gym server and uses the follo
|
|
|
212
242
|
**"Directory already exists"**
|
|
213
243
|
- Remove the existing directory or use a different workspace location
|
|
214
244
|
|
|
215
|
-
## Publishing
|
|
216
|
-
|
|
217
|
-
See [PUBLISHING.md](PUBLISHING.md) for instructions on:
|
|
218
|
-
- Publishing to PyPI
|
|
219
|
-
- Publishing to GitHub
|
|
220
|
-
- Version management
|
|
221
|
-
- Release workflow
|
|
222
245
|
|
|
223
246
|
## Development
|
|
224
247
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "ai-coding-gym-mcp"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.4"
|
|
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"
|
|
@@ -29,3 +29,4 @@ Issues = "https://github.com/yourusername/ai-coding-gym-mcp/issues"
|
|
|
29
29
|
|
|
30
30
|
[project.scripts]
|
|
31
31
|
ai-coding-gym-mcp = "server:main"
|
|
32
|
+
ai_coding_gym_mcp = "server: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.
|
|
8
|
+
version="0.1.4",
|
|
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",
|
|
@@ -21,6 +21,7 @@ setup(
|
|
|
21
21
|
entry_points={
|
|
22
22
|
"console_scripts": [
|
|
23
23
|
"ai-coding-gym-mcp=server:main",
|
|
24
|
+
"ai_coding_gym_mcp=server:main",
|
|
24
25
|
],
|
|
25
26
|
},
|
|
26
27
|
classifiers=[
|
|
File without changes
|
{ai_coding_gym_mcp-0.1.3 → ai_coding_gym_mcp-0.1.4}/ai_coding_gym_mcp.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
{ai_coding_gym_mcp-0.1.3 → ai_coding_gym_mcp-0.1.4}/ai_coding_gym_mcp.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|