MCP Software-Engineering RL Environment
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MCP Software-Engineering RL EnvironmentFind and fix the duplicate results bug in InventoryService.search() with a regression test."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP Software-Engineering RL Environment (Mini Project)
A reproducible benchmark environment for evaluating an AI coding agent through Model Context Protocol (MCP).
The agent receives a task, discovers repository information through MCP tools, edits code, and runs deterministic verification. The benchmark records whether the agent used the tools correctly and whether the final repository satisfies the specification.
Scenario
The repository contains a small inventory service. InventoryService.search() is intentionally buggy: when a product has multiple matching tags, it can appear more than once. The agent must diagnose the bug, implement a feature-safe fix, and add a regression test.
Related MCP server: Coding Tools MCP
Environment contract
The agent can use these MCP tools:
list_files()- inspect repository structureread_file(path)- read repository filessearch_code(query)- search source codewrite_file(path, content)- modify/create filesrun_tests()- run deterministic testsgit_diff()- inspect changes
The environment itself verifies the result with verify.py. The golden solution is stored separately in golden/solution.patch.
Run
python -m venv .venv
# Linux/macOS
source .venv/bin/activate
# Windows PowerShell: .venv\\Scripts\\Activate.ps1
pip install -r requirements.txt
python -m mcp_rl_env.serverIn another terminal:
python verify.pyRun the reference solution:
python apply_golden.py
python verify.pyBenchmark idea
An evaluation episode is:
Reset repository to the task seed.
Give the agent only the task statement.
Start the MCP server.
Agent discovers files using MCP.
Agent diagnoses and edits code.
Agent runs tests.
Deterministic verifier computes reward.
A simple reward can be:
reward = 0.50 * tests + 0.20 * regression_test + 0.15 * tool_use + 0.15 * patch_quality
The important point is that verification is deterministic; the model does not grade itself.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
AlicenseAqualityAmaintenanceMCP server that gives AI coding agents direct access to evaluation tools.22Apache 2.0- AlicenseNot gradedqualityBmaintenanceEmpower any MCP-compatible AI Agent(MCP Client) with engineering-grade capabilities to understand, modify, run, and deliver real-world code repositories.825Apache 2.0
- AlicenseAqualityAmaintenanceProvides AI coding agents with five intelligence layers (dependency graph, git history, documentation, architectural decisions, code health) via nine MCP tools, enabling deep codebase understanding and reducing exploration cost.116,181AGPL 3.0
- AlicenseNot gradedqualityCmaintenanceEnables AI agents to search code by meaning, explore codebase structure, store and query knowledge with temporal facts, and read source code through a set of MCP tools.4537MIT
Related MCP Connectors
Hosted MCP for creating, checking, deploying, and hosting static sites for AI agents.
Persistent memory and cross-session learning for AI coding assistants (hosted remote MCP).
OCR, transcription, file extraction, and image generation for AI agents via MCP.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Philippe012/MCP-Agent'
If you have feedback or need assistance with the MCP directory API, please join our Discord server