We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/koei-kaji/zk-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Makefile•318 B
.PHONY: run
run:
@ZK_DIR=. uv run mcp dev server.py
.PHONY: format
format:
@uv run ruff check . --select I --fix-only --exit-zero
@uv run ruff format .
.PHONY: lint
lint:
@uv run ruff check .
@uv run mypy --show-error-codes .
.PHONY: test
test:
@uv run pytest
.PHONY: pre-commit
pre-commit: format lint test