We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/madamak/apache-airflow-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•295 B
"""Apache Airflow MCP Server - Enable agents to interact with Airflow APIs."""
from ._version import get_version
__version__ = get_version()
def main() -> None:
"""Main entry point for the CLI."""
from .server import run_server
run_server()
__all__ = ["__version__", "main"]