MCP server for AI Coding Gym - fetch and submit coding challenges
Project description
AI Coding Gym - MCP Server
Local MCP server for interacting with the AI Coding Gym platform. Provides tools to fetch coding problems and submit solutions.
Features
/fetch: Fetch a coding problem and clone the repository to your local machine/submit: Submit your solution by committing and pushing changes
Quick Start
Installation
Option 1: Install from PyPI
pip install ai-coding-gym-mcp
Option 2: Install from GitHub
pip install git+https://github.com/yourusername/ai-coding-gym-mcp.git
Option 3: Install from source
git clone https://github.com/yourusername/ai-coding-gym-mcp.git
cd ai-coding-gym-mcp
pip install -e .
Configure Claude Desktop
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on Mac):
{
"mcpServers": {
"ai-coding-gym": {
"command": "python",
"args": ["-m", "server"],
"env": {
"AI_CODING_GYM_SERVER": "https://your-server-url.com"
}
}
}
}
See INSTALLATION.md for detailed setup instructions for Claude Desktop and VS Code.
Usage
Running the MCP Server
The server uses stdio for communication with MCP clients:
python server.py
Or configure it in your MCP client settings (e.g., Claude Desktop).
Tool: /fetch
Fetches a problem from the backend and clones the repository locally.
Parameters:
problem_id(required): Problem identifier (e.g.,"django__django-10097")user_id(required): Your user ID for authenticationserver_url(optional): Backend server URL (default:"https://api.example.com")workspace_dir(optional): Local workspace directory (default:"./workspace")
Example:
{
"problem_id": "django__django-10097",
"user_id": "user_123",
"server_url": "https://ai-coding-gym.example.com"
}
What it does:
- Calls backend API to get repository URL and deployment key
- Clones the repository to
workspace/{problem_id}/ - Checks out the problem-specific branch
- Saves the problem statement to
PROBLEM_STATEMENT.md
Tool: /submit
Submits your solution by committing changes and pushing to the remote repository.
Parameters:
problem_id(required): Problem identifieruser_id(required): Your user ID for authenticationserver_url(optional): Backend server URL (default:"https://api.example.com")commit_message(optional): Custom commit message
Example:
{
"problem_id": "django__django-10097",
"user_id": "user_123",
"commit_message": "Fixed the authentication bug"
}
What it does:
- Stages all changes in the working directory (
git add -A) - Commits with the provided or auto-generated message
- Pushes to the remote branch using deployment key
- Notifies the backend server about the submission
Backend API Endpoints
The MCP server expects the following backend API endpoints:
POST /api/fetch-problem
Request:
{
"problem_id": "django__django-10097",
"user_id": "user_123"
}
Response:
{
"repo_url": "git@github.com:org/repo.git",
"branch": "django__django-10097-user_123",
"deploy_key": "-----BEGIN OPENSSH PRIVATE KEY-----\n...\n-----END OPENSSH PRIVATE KEY-----",
"problem_statement": "# Problem Description\n\n..."
}
POST /api/submit
Request:
{
"problem_id": "django__django-10097",
"user_id": "user_123",
"commit_hash": "abc123def456...",
"branch": "django__django-10097-user_123",
"timestamp": "2026-02-03T10:30:00"
}
Response:
{
"status": "success",
"message": "Submission received"
}
Security
- Deployment keys are stored in
~/.mcp-keys/with 600 permissions - Keys are scoped per problem and managed by the backend
- SSH host key checking is disabled for convenience (consider enabling in production)
- Credentials are cached in memory during the MCP server session
Configuration
Default server URL is https://api.example.com. You can override it by passing server_url parameter to each tool call, or set it via environment variable:
export AI_CODING_GYM_SERVER="https://your-server.com"
Troubleshooting
"No credentials found for problem_id"
- Run
/fetchfirst to download the problem and credentials
"Git clone/push failed"
- Check network connectivity
- Verify deployment key is valid
- Ensure SSH agent isn't interfering
"Directory already exists"
- Remove the existing directory or use a different workspace location
Publishing
See PUBLISHING.md for instructions on:
- Publishing to PyPI
- Publishing to GitHub
- Version management
- Release workflow
Development
The server uses:
- mcp: Model Context Protocol SDK
- requests: HTTP client for backend API calls
- subprocess: Git command execution with SSH key management
Local Development
# Clone the repository
git clone https://github.com/yourusername/ai-coding-gym-mcp.git
cd ai-coding-gym-mcp
# Install in development mode
pip install -e .
# Run tests (if available)
pytest
# Test the server locally
python server.py
Contributing
Contributions welcome! Please:
- Fork the repository
- Create a feature branch
- Make your changes
- Submit a pull request
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ai_coding_gym_mcp-0.1.1.tar.gz.
File metadata
- Download URL: ai_coding_gym_mcp-0.1.1.tar.gz
- Upload date:
- Size: 8.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b7bddfcbfdc5265990ff20f86be81cbe41dc60dbff3e23a423a5f6bf109fbbf1
|
|
| MD5 |
a8cba3aab72da870f5444924fe1e8036
|
|
| BLAKE2b-256 |
57a3b04aa327c369b6e3504b240d2e94731fe9ae62b98976b8dea00a47769320
|
File details
Details for the file ai_coding_gym_mcp-0.1.1-py3-none-any.whl.
File metadata
- Download URL: ai_coding_gym_mcp-0.1.1-py3-none-any.whl
- Upload date:
- Size: 8.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee3ef75869d2b69fdb37e33cad1f3841dae637c491d6ebe76d73f0fb575bbe95
|
|
| MD5 |
e76a9e8a2df680d29b63f1d7374a0694
|
|
| BLAKE2b-256 |
15c6b40c417be6b2c21bed3a65cf25cae814e2cd683d174fd4ebb3a5df6beb26
|