MCP-Airflow-API vs time
Side-by-side comparison to help you pick between these two MCP servers.
MCP-Airflow-API by call518 | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 46 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsOps & InfraAI / LLM Tools | ProductivityDeveloper ToolsCommunication |
| Language | Python | TypeScript |
| Last commit | this month | this month |
MCP-Airflow-API · Summary
MCP server enabling natural language control of Apache Airflow workflows through Model Context Protocol.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
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
time · Use cases
- Assisting with international meeting scheduling across time zones
- Providing real-time time information for location-based queries
- Enabling time conversion for travel planning and itineraries
MCP-Airflow-API · Install
Installation
Method 1: Direct Installation from PyPI
uvx --python 3.12 mcp-airflow-apiMethod 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 -dtime · Install
Installation Options
**Using uv (recommended):**
uvx mcp-server-time**Using PIP:**
pip install mcp-server-time
python -m mcp_server_time**Configure for Claude Desktop:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}