We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bborbe/semantic-search-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Makefile•351 B
.PHONY: install format lint typecheck check test precommit
install:
uv sync --all-extras
format:
uv run ruff format .
uv run ruff check --fix . || true
lint:
uv run ruff check .
typecheck:
uv run mypy src
check: lint typecheck
test:
uv run pytest -v || test $$? -eq 5
precommit: format test check
@echo "✓ All precommit checks passed"