We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/llanterme/codebase-insights-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
run_server.py•404 B
#!/usr/bin/env python3
"""
Simple runner script for MCP Inspector compatibility.
This script sets up the Python path and runs the MCP server.
"""
import sys
import os
from pathlib import Path
# Add the project root to Python path
project_root = Path(__file__).parent
sys.path.insert(0, str(project_root))
# Import and run the server
from mcp_server.main import run
if __name__ == "__main__":
run()