Skip to main content
Glama

O'RLY MCP Server

start_server.py•905 B
#!/usr/bin/env python3 """ Helper script to start the ORLY MCP server """ import subprocess import sys import os def main(): """Start the ORLY MCP server""" # Get the directory containing this script script_dir = os.path.dirname(os.path.abspath(__file__)) # Change to the project root directory os.chdir(script_dir) print("šŸš€ Starting ORLY MCP Server...") print(f"Working directory: {os.getcwd()}") print("Press Ctrl+C to stop the server") print("-" * 50) try: # Run the server subprocess.run([ "uv", "run", "python", "orly_mcp/server.py" ], check=True) except KeyboardInterrupt: print("\n\nšŸ›‘ Server stopped by user") sys.exit(0) except subprocess.CalledProcessError as e: print(f"\nāŒ Error starting server: {e}") sys.exit(1) 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/princefishthrower/orly-mcp'

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