MCP Catalogs
Home

MCP-Airflow-API vs ultimate_mcp_server

Side-by-side comparison to help you pick between these two MCP servers.

MCP-Airflow-API
by call518
ultimate_mcp_server
by Dicklesworthstone
Stars★ 46★ 149
30d uses
Score4585
Official
Categories
Developer ToolsOps & InfraAI / LLM Tools
AI / LLM ToolsBrowser AutomationFile System
LanguagePythonPython
Last committhis month2 mo ago

MCP-Airflow-API · Summary

MCP server enabling natural language control of Apache Airflow workflows through Model Context Protocol.

ultimate_mcp_server · Summary

Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.

MCP-Airflow-API · Use cases

  • Airflow administrators managing DAGs and tasks through natural language commands
  • Operations teams monitoring workflow status and performance in large environments
  • Data engineers interacting with Airflow clusters using LLM assistants like Claude or GPT

ultimate_mcp_server · Use cases

  • Complex document processing and analysis with OCR and structured data extraction
  • Web automation and research across multiple sites with browser control
  • Cost-optimized AI workflows through intelligent task delegation between models

MCP-Airflow-API · Install

Installation

Method 1: Direct Installation from PyPI

uvx --python 3.12 mcp-airflow-api

Method 2: Claude-Desktop MCP Client Integration

{
  "mcpServers": {
    "mcp-airflow-api": {
      "command": "uvx",
      "args": ["--python", "3.12", "mcp-airflow-api"],
      "env": {
        "AIRFLOW_API_VERSION": "v2",
        "AIRFLOW_API_BASE_URL": "http://localhost:8080/api",
        "AIRFLOW_API_USERNAME": "airflow",
        "AIRFLOW_API_PASSWORD": "airflow"
      }
    }
  }
}

Method 3: Docker Compose

git clone https://github.com/call518/MCP-Airflow-API.git
cd MCP-Airflow-API
cp .env.example .env
# Edit .env with your Airflow API settings
docker-compose up -d

ultimate_mcp_server · Install

Installation

  1. Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server
  1. Install dependencies:
pip install -e .
  1. For Claude Desktop integration, add to your claude_desktop_config.json:
{
  "mcpServers": {
    "ultimate-mcp": {
      "command": "python",
      "args": ["-m", "ultimate_mcp_server"],
      "env": {
        "PYTHONPATH": "."
      }
    }
  }
}
  1. Run the server:
python -m ultimate_mcp_server
Comparison generated from public README + GitHub signals. Last updated automatically.