We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/StacklokLabs/plotting-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Makefile•533 B
.PHONY: install format lint typecheck test help
help:
@echo "Available commands:"
@echo " install - Install dependencies using uv"
@echo " format - Format code using ruff"
@echo " lint - Run linting using ruff"
@echo " typecheck - Run type checking using ty"
@echo " test - Run tests using pytest"
@echo " help - Show this help message"
install:
uv sync
format:
uv run ruff format .
uv run ruff check --fix .
lint:
uv run ruff check .
typecheck:
uv run ty check
test:
uv run pytest