Skip to main content
Glama

reproduce_python_project

Reproduce a Python project from a public GitHub repo by routing execution to a Docker-based backend, verifying the setup in an isolated container.

Instructions

Compatibility endpoint that refuses Node-side repository execution and directs callers to the Python MCP Docker backend.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
repo_urlYesPublic GitHub repository URL

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.4.1

TDQS

B3.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It explicitly reveals a key non-obvious behavior: the tool will not execute the repository on the Node side and will redirect instead. This is valuable transparency, although it does not describe the exact response format or whether any other side effects occur.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence with no filler and conveys the essential behavior quickly. Some phrasing, such as 'Node-side repository execution' and 'Python MCP Docker backend,' is jargon-heavy but still compact and the key refusal behavior is front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description is adequate for a simple one-parameter compatibility endpoint because it explains the core behavior. However, there is no output schema and no detail on how the redirection is delivered (e.g., error message, status code, instructions), which leaves some ambiguity about what a caller should expect.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% and the parameter `repo_url` is already documented as a public GitHub repository URL. The tool description adds no extra semantic detail about the parameter, so it does not exceed the baseline set by the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states that this endpoint refuses Node-side repository execution and instead directs callers to the Python MCP Docker backend. The verbs 'refuses' and 'directs' identify an explicit behavior that distinguishes the tool from what its name might imply, though 'Compatibility endpoint' is somewhat abstract and the actual reproduction behavior is not described.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description mentions directing callers to a Python backend, which suggests an alternative, but it does not name specific sibling tools or state clear when-to-use/when-not-to-use conditions. An agent is left to infer that this is a compatibility/redirect endpoint rather than a tool that actually reproduces projects.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.