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
__init__.py•344 B
"""Aerospace MCP HTTP Server Application.
This package provides the FastAPI HTTP server implementation for the
Aerospace MCP project, offering flight planning and aerospace operations
through RESTful APIs.
"""
__version__ = "0.1.0"
__author__ = "Aaron"
__email__ = "aaron@example.com"
from .main import app
__all__ = ["app", "__version__"]