We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/astronomer/astro-airflow-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•282 B
"""Airflow MCP Server."""
from importlib.metadata import PackageNotFoundError, version
try:
__version__ = version("astro-airflow-mcp")
except PackageNotFoundError:
# Package is not installed (e.g., during development/testing with PYTHONPATH)
__version__ = "0.0.0+dev"