Skip to main content
Glama

airflow-mcp-server

conftest.py1.32 kB
"""Test configuration and shared fixtures.""" import pytest @pytest.fixture def sample_openapi_spec(): """Sample OpenAPI spec for testing across multiple test files.""" return { "openapi": "3.0.0", "info": {"title": "Airflow API", "version": "1.0.0"}, "paths": { "/api/v1/dags": { "get": { "operationId": "get_dags", "summary": "Get all DAGs", "tags": ["DAGs"], "responses": { "200": { "description": "List of DAGs", "content": { "application/json": {"schema": {"type": "object", "properties": {"dags": {"type": "array", "items": {"type": "object", "properties": {"dag_id": {"type": "string"}}}}}}} }, } }, }, "post": {"operationId": "create_dag", "summary": "Create a DAG", "tags": ["DAGs"], "responses": {"201": {"description": "Created"}}}, }, "/api/v1/connections": {"get": {"operationId": "get_connections", "summary": "Get connections", "tags": ["Connections"], "responses": {"200": {"description": "Success"}}}}, }, }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/abhishekbhakat/airflow-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server