We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/cheesejaguar/aerospace-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
run_server_example.py•692 B
#!/usr/bin/env python3
"""
Example of how to run the Aerospace MCP Server
This script demonstrates the different ways to start the MCP server.
Requirements:
pip install mcp fastapi openap airportsdata geographiclib pydantic uvicorn
Usage:
# Run with stdio transport (default for MCP clients)
python run_server_example.py
# Run with TCP transport for debugging
python run_server_example.py --tcp localhost:8000
"""
import os
import sys
# Add the project root to Python path
project_root = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, project_root)
if __name__ == "__main__":
# Import and run the server
from aerospace_mcp.server import run
run()