dev-env-mcp
Provides safe, structured management of Python virtual environments and pip operations within a project workspace.
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., "@dev-env-mcpcreate a .venv and install requests"
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.
dev-env-mcp
A local MCP (Model Context Protocol) server that gives coding agents a safe, structured way to manage Python environments inside a project workspace.
Instead of letting an agent run arbitrary shell commands, dev-env-mcp exposes a small, well-defined API for:
selecting a project workspace
creating/using a virtual environment inside that workspace
running restricted
pipoperations in that venvfreezing pinned dependencies to
requirements.txt
Why this exists
Agents often struggle to reliably manage Python envs because:
environment details are implicit (which interpreter? which venv?)
shell command execution is powerful but risky
installs can be slow/hang on Windows and cause inconsistent state
dev-env-mcp makes env management explicit and verifiable:
all actions are scoped to a chosen workspace root
the active venv is persisted per workspace
Related MCP server: Sandbox MCP
Key concepts
Workspace
A workspace is the project directory that the server is allowed to modify.
All file paths are sandboxed to the active workspace root.
Select it with:
workspace_use(path)
The active workspace is persisted globally so the server can remember it across restarts.
Active venv
Inside each workspace, the server tracks which venv is currently active.
The active venv is persisted in:
<workspace>/.dev-env-mcp/state.jsonFeatures
Workspace management
workspace_use(path)Selects the active workspace root (typically where
pyproject.toml/.gitlives)All subsequent operations are restricted to this workspace
Virtual environment management
env_create(path=".venv")Creates a venv inside the active workspace and marks it as active
env_use(path=".venv")Selects an existing venv inside the active workspace and marks it as active
Restricted pip operations
pip(action, packages=None, options=None, confirm=False)Actions:
install | uninstall | list | show | checkRuns
python -m pip ...using the active venv pythonPip options are allowlisted
Uninstall requires
confirm=true
Freezing dependencies
freeze(path="requirements.txt")Writes pinned requirements from the active venv to a file in the workspace
Reliability and stability
Bounded execution: per-action timeouts + capped stdout/stderr.
Post-condition verification: if
pip/venvhangs after the desired state is reached, the server verifies the state, stops the process, and returns success with an audit trail.Process-tree termination: stops the full subprocess tree to avoid orphaned children.
Security model
This MCP is intentionally restrictive:
✅ No arbitrary command execution (no
shell=True)✅ Workspace sandboxing: all file paths must resolve inside the active workspace
✅ pip runs only via the active venv python (
<venv>/python -m pip)✅ pip options are allowlisted (unknown flags are rejected)
✅ destructive actions require explicit confirmation (
confirm=truefor uninstall)✅ outputs are truncated to prevent log flooding
✅ audit log per workspace
Audit log:
<workspace>/.dev-env-mcp/audit.logRequirements
Python 3.10+ (tested on Windows)
uvrecommended (fast runner + reproducible installs)Runtime dependencies (from
pyproject.toml):mcp[cli]psutil
Run the server (stdio transport)
This server is intended to be started by an MCP client (Codex / Cursor / Inspector) using stdio.
From the repo root:
uv run server.pyIf you run it manually, it will wait for MCP client messages on stdin.
Example client workflow (tool-call sequence)
Typical agent flow:
Select the project workspace
Create a venv
Install dependencies
Freeze requirements
Example calls:
workspace_use("C:\\path\\to\\project")env_create(".venv")pip(action="install", packages=["requests", "python-dotenv"])freeze("requirements.txt")
Project structure
dev-env-mcp/
dev_env_mcp/
server.py # MCP tool definitions and orchestration
workspace.py # workspace root detection + sandbox path resolver
state.py # per-workspace + global persistent state
audit.py # JSONL audit logging
runner.py # safe subprocess runner (timeouts, caps, process-tree kill)
venv_ops.py # venv create/use helpers (+ optional soft verify)
pip_ops.py # allowlisted pip actions + verification-based early exit
freeze.py # requirements.txt generation
config.py # timeouts, caps, allowlists
server.py # entrypoint
pyproject.toml
README.mdNotes / limitations
This server intentionally supports a narrow set of operations.
It does not modify global Python installations.
It does not support conda/poetry by design.
For very large packages, installs may still take time — the goal is to be safe, predictable, and verifiable.
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Latest Blog Posts
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/Tova501/Dev-Env-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server