venv-mcp-server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| UV_PATH | No | Path to uv executable. Default is the 'uv' command in your PATH. | uv |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| initC | Initialize virtual environment. Returns True if successful. |
| syncC | Sync pyproject.toml with virtual environment. Returns True if successful. |
| add_packageC | Add package to pyproject.toml and update the virtual environment. Returns True if successful. Args: package_name: Name of the package to install. dev: If True, add the package to the development dependency group. |
| add_packagesA | Add many packages to pyproject.toml at once and update the virtual environment. Args: package_names: List of names of the packages to install. dev: If True, add the package to the development dependency group. |
| remove_packageB | Remove package from pyproject.toml file and update the virtual environment. Returns True if successful. Args: package_name: Name of the package to remove. dev: If True, remove the package from the development dependency group |
| run_in_venvC | Run a command in virtual environment. Returns True if successful. Args: command: Command to run. args: Arguments to pass to the command. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
Each tool has a clearly distinct purpose: init, add/remove packages (singular/plural), sync, and run commands. No overlap or ambiguity.
All tools use snake_case and follow a verb_noun pattern (add_package, remove_package, run_in_venv), but 'init' and 'sync' are single words, which is a minor deviation.
6 tools cover the essential operations for virtual environment management (init, add, remove, sync, run). No excess or deficiency.
Covers core workflows: init, add/remove packages, sync, run commands. Missing operations like listing installed packages or updating packages, but not critical.