Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
9ec1cd2020
|
|||
|
c20539c39f
|
@@ -27,7 +27,7 @@ https://github.com/user-attachments/assets/f3e60fff-8680-4dd9-b08e-fa7db655a705
|
||||
"--base-url",
|
||||
"http://localhost:8080",
|
||||
"--auth-token",
|
||||
"<jwt_token>",
|
||||
"<jwt_token>"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[project]
|
||||
name = "airflow-mcp-server"
|
||||
version = "0.6.0"
|
||||
version = "0.6.1"
|
||||
description = "MCP Server for Airflow"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.11"
|
||||
|
||||
@@ -56,7 +56,7 @@ async def get_airflow_tools(config: AirflowConfig, mode: str = "unsafe") -> list
|
||||
airflow_version = version_result.get("version")
|
||||
if airflow_version is None:
|
||||
raise RuntimeError("Could not determine Airflow version from get_version tool.")
|
||||
if parse_version(airflow_version) <= parse_version("3.1.0"):
|
||||
if parse_version(airflow_version) < parse_version("3.1.0"):
|
||||
raise RuntimeError(f"Airflow version {airflow_version} is not supported. Requires >= 3.1.0.")
|
||||
|
||||
tools = []
|
||||
|
||||
Reference in New Issue
Block a user