We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/BernhardRode/loxone-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Makefile•423 B
.PHONY: install test lint format type-check ci-check setup-pre-commit
install:
uv pip install -e ".[dev]"
test:
uv run pytest --cov=src/loxone_mcp --cov-report=xml -k "not (test_mcp_client_integration or test_mcp_server)"
lint:
uv run ruff check src/ tests/
format:
uv run black --check src/ tests/
type-check:
uv run mypy src/
ci-check: lint format type-check test
setup-pre-commit:
uv run pre-commit install