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
_version.py•362 B
"""Version helpers for the Airflow MCP server."""
from importlib import metadata
def get_version() -> str:
"""Return the installed package version, falling back to a dev placeholder."""
try:
return metadata.version("apache-airflow-mcp-server")
except metadata.PackageNotFoundError:
return "0.0.0+dev"
__all__ = ["get_version"]