Chat history and growing context

This commit is contained in:
2025-02-24 14:23:21 +00:00
parent 3a03f08a4a
commit 5d199ba154
5 changed files with 121 additions and 21 deletions

View File

@@ -0,0 +1,7 @@
import asyncio
from airflow_mcp_server.tools.tool_manager import get_airflow_tools
# Get tools with their parameters
tools = asyncio.run(get_airflow_tools(mode="safe"))
TOOLS = {tool.name: {"description": tool.description, "parameters": tool.inputSchema} for tool in tools}