We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/elena-kuznetsova-wh/warehouse-athena-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
default_stages: [pre-commit]
repos:
- repo: https://github.com/pycqa/isort
rev: "6.0.1"
hooks:
- id: isort
name: isort (Sort imports)
language_version: python3.13
exclude: "(.git|__pycache__|.pytest_cache|.mypy_cache|app/model/pg/migrations/versions|.venv|tests)/.*"
- repo: https://github.com/psf/black
rev: "25.1.0"
hooks:
- id: black
language_version: python3.13
args: ["--config=pyproject.toml"]
exclude: "(.git|__pycache__|.pytest_cache|.mypy_cache|app/model/pg/migrations/versions|.venv|tests)/.*"
- repo: https://github.com/pycqa/flake8
rev: "7.1.2"
hooks:
- id: flake8
language_version: python3.13
args: ["--config=.flake8"]
exclude: "(.git|__pycache__|.pytest_cache|.mypy_cache|app/model/pg/migrations/versions|.venv|tests)/.*"
- repo: https://github.com/pre-commit/mirrors-mypy
rev: "v1.15.0"
hooks:
- id: mypy
args: ["--config-file=pyproject.toml"]
language_version: python3.13
exclude: "(.git|__pycache__|.pytest_cache|.mypy_cache|app/model/pg/migrations/versions|.venv|tests)/.*|.pyi$|.yaml$"
- repo: https://github.com/PyCQA/bandit
rev: "1.8.0"
hooks:
- id: bandit
args: ["-c", ".bandit", "-ll"] # -ll = only medium/high severity
language_version: python3.13
exclude: "(.git|__pycache__|.pytest_cache|.mypy_cache|app/model/pg/migrations/versions|.venv|tests)/.*"