We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nathanschepers/mcp-py3repl'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__main__.py•245 B
import asyncio
import sys
from pathlib import Path
# Add src to path so imports work during development
sys.path.insert(0, str(Path(__file__).parent.parent))
from mcp_py3repl.server import run
if __name__ == "__main__":
asyncio.run(run())