repl-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
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
| Capability | Details |
|---|---|
| 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
| Name | Description |
|---|---|
| execute_pythonA | Persistent Python REPL — use instead of State (variables, imports, functions) survives across calls: a warm
call takes ~0.1s vs ~3s for each fresh |
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 1 tool
Only one tool exists, so there is zero ambiguity. The tool's purpose as a persistent Python REPL is clearly defined and distinct from any other tool.
The single tool name 'execute_python' follows a clear verb_noun pattern in snake_case. With only one tool, consistency is inherently maintained.
One tool is slightly below the typical 3-15 range, but for a REPL server it is appropriate. The tool consolidates execution, state persistence, filesystem access, and MCP calls into a single well-designed interface.
The tool covers the entire REPL domain: arbitrary Python execution, persistent state, top-level await, full filesystem access, and MCP integration. There are no apparent dead ends or missing operations.