mcp-server-apache-airflow
No description available.
File Explorer
Download Latest Version (.zip)- modelcontextprotocol.mdc
- python.mdc
- claude.yml
- lint.yml
- publish.yml
- test.yml
- CODEOWNERS
- __init__.py
- airflow_client.py
- config.py
- connection.py
- dag.py
- dagrun.py
- dagstats.py
- dataset.py
- eventlog.py
- importerror.py
- monitoring.py
- plugin.py
- pool.py
- provider.py
- taskinstance.py
- variable.py
- xcom.py
- __init__.py
- __main__.py
- enums.py
- envs.py
- main.py
- server.py
- test_dag.py
- test_taskinstance.py
- __init__.py
- conftest.py
- test_airflow_client.py
- test_main.py
- test_server.py
- .gitignore
- .tool-versions
- Dockerfile
- LICENSE
- Makefile
- pyproject.toml
- pytest.ini
- README.md
- smithery.yaml
- uv.lock
# Installation Guide
git clone https://github.com/yangkyeongmo/mcp-server-apache-airflow
Downloads the entire project code from GitHub to your computer.
cd mcp-server-apache-airflow
Moves into the project folder you just downloaded.
2. Docker
Easy Recommended- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker build -t mcp-server-apache-airflow .
Builds a runnable image based on the Dockerfile.
docker run -p 8080:80 mcp-server-apache-airflow
Runs the built image as an actual container.
3. Python
Easypip install .
Installs the package published on PyPI directly β no need to clone the source.
python <μ€νν νμΌλͺ
>.py # READMEμμ μ νν μ€ν νμΌλͺ
μ νμΈνμΈμ
Runs the Python script (or module).
4. Make
Medium- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make run
Compiles the code based on the generated build configuration to produce an executable.
make run-sse
Compiles the code based on the generated build configuration to produce an executable.
make test
Compiles the code based on the generated build configuration to produce an executable.
make lint
Compiles the code based on the generated build configuration to produce an executable.
make format
Compiles the code based on the generated build configuration to produce an executable.
Pulled directly from this repo's README.
