We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ravipesala/spark_mcp_optimizer'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
spark_optimize.py•404 B
#!/usr/bin/env python3
import sys
import os
# Ensure the current directory is in the path so we can import src
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
try:
from src.main import run_cli
except ImportError as e:
print(f"Error importing application: {e}")
# Fallback to help user if src package is missing or weird
sys.exit(1)
if __name__ == "__main__":
run_cli()