Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
PYFMCP_HOSTNoHost for HTTP transport (e.g., 127.0.0.1). Required when transport is 'http'.
PYFMCP_PORTNoPort for HTTP transport (e.g., 8000). Required when transport is 'http'.
PYFMCP_ROOT_DIRNoProject root directory. Defaults to the current directory.
PYFMCP_TRANSPORTNoTransport protocol: 'stdio' (default) or 'http'.stdio

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": true
}
logging
{}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
extensions
{
  "io.modelcontextprotocol/ui": {}
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
basedpyrightC

Run basedpyright diagnostics

pytestC

Run pytest and return its JUnit XML report.

ruff_lintC

Run Ruff diagnostics

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

B3/5.0

Scored across 3 tools

Disambiguation5/5

Each tool targets a distinct aspect of Python development: type checking (basedpyright), testing (pytest), and linting (ruff_lint). There is no functional overlap between them, making selection unambiguous.

Naming Consistency4/5

Two tools use the bare command name (basedpyright, pytest) while ruff_lint appends a descriptor. This is a minor deviation, but the naming is still predictable since each tool is recognizable by its underlying tool name.

Tool Count5/5

Three tools is well-scoped for a Python development server covering static analysis, linting, and testing. Each tool has a clear purpose and the count is appropriate for the domain.

Completeness4/5

The set covers the core development loop of type checking, linting, and testing. A formatter or build tool could be added, but the current coverage is typical and workable for most Python projects.

Maintenance

ActivitySlowing
ResponsivenessNo issues