Skip to main content
Glama
petridisa

pyenv-manager-mcp

by petridisa

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

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

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
list_versionsA

List all Python versions installed locally via pyenv.

get_current_versionA

Get the currently active Python version (pyenv version).

list_available_downloadsA

List all Python versions available for installation via pyenv.

Args:
    filter: Optional string to filter versions (e.g., '3.12' to show only 3.12.x versions).
install_versionB

Install a specific Python version using pyenv.

Args:
    version: The exact version string to install (e.g., '3.12.2').
set_global_versionA

Set the global Python version for pyenv.

Args:
    version: The version string to set globally (e.g., '3.12.2').
set_local_versionA

Set the local directory Python version (.python-version).

Args:
    version: The version string to set locally (e.g., '3.12.2').

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.9/5.0

Scored across 6 tools

Disambiguation5/5

Each tool maps to a distinct pyenv operation: listing installed versions, showing the active version, listing downloadable versions, installing, and setting global/local versions. There is minimal overlap, and the descriptions clearly separate installed from available versions.

Naming Consistency5/5

Tool names consistently follow a predictable verb_noun pattern: list_*, get_*, install_*, set_*. Even though list_available_downloads uses 'downloads' instead of 'versions', the naming style remains uniform and easy to navigate.

Tool Count5/5

Six tools is a well-scoped set for a pyenv manager. Each tool covers a necessary core operation without unnecessary bloat or redundant additions.

Completeness3/5

The tool surface covers listing, installing, and setting versions, but notably lacks uninstall/remove functionality, which is a standard pyenv lifecycle operation. Agents can work around it, but version cleanup is a meaningful gap.

Maintenance

ActivityMaintained
ResponsivenessNo issues