We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/yzfly/mcp-python-interpreter'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
main.py•386 B
"""Main module for mcp-python-interpreter."""
import sys
import os
import argparse
from pathlib import Path
from mcp_python_interpreter.server import mcp
def main():
"""Run the MCP Python Interpreter server."""
# The actual argument parsing is done in the server module
# to ensure the working directory is set early
mcp.run()
if __name__ == "__main__":
main()