We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/swesmith-repos/yangkyeongmo__mcp-server-apache-airflow.691bd7cd'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
.PHONY: run build publish lint format test
PYTHON=uv run --env-file .env python
PARAMS=
run:
$(PYTHON) src $(PARAMS)
run-sse:
$(PYTHON) src --transport sse $(PARAMS)
build:
uv build
publish:
uv publish
lint:
$(PYTHON) -m ruff check . --fix
format:
$(PYTHON) -m ruff format .
test:
$(PYTHON) -m pytest test/ -v