Skip to main content
Glama

MCP Python Toolbox

""" Main entry point for the MCP Python Toolbox server. """ import os import argparse from pathlib import Path from .server import PythonToolboxServer def main() -> None: """Run the MCP Python Toolbox server.""" parser = argparse.ArgumentParser(description="MCP Python Toolbox Server") parser.add_argument( "--workspace", type=str, default=os.getcwd(), help="Path to the workspace root directory (default: current directory)" ) args = parser.parse_args() workspace_root = Path(args.workspace).resolve() server = PythonToolboxServer(workspace_root) server.setup() server.run() if __name__ == "__main__": main()

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/gianlucamazza/mcp_python_toolbox'

If you have feedback or need assistance with the MCP directory API, please join our Discord server