We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/twardoch/brosh'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.3.4
hooks:
- id: ruff
args: [--fix]
- id: ruff-format
args: [--respect-gitignore]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
hooks:
- id: trailing-whitespace
- id: check-yaml
- id: check-toml
- id: check-added-large-files
- id: debug-statements
- id: check-case-conflict
- id: mixed-line-ending
args: [--fix=lf]
- repo: https://github.com/asottile/pyupgrade
rev: v3.15.2 # Use a recent version
hooks:
- id: pyupgrade
args: [--py310-plus]
- repo: https://github.com/PyCQA/autoflake
rev: v2.3.1 # Use a recent version
hooks:
- id: autoflake
args:
- --in-place
- --remove-all-unused-imports
- --remove-unused-variables
- --recursive