We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/spencerf2/anki-mcp-elevenlabs'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Makefile•675 B
.PHONY: help test fmt install-hooks
help:
@echo "Available targets:"
@echo " fmt - Format code with ruff"
@echo " install-hooks - Install git pre-commit hooks"
@echo " test - Run all tests"
@echo " test FILE=... - Run specific test file"
@echo " help - Show this help message"
fmt:
poetry run ruff format .
poetry run ruff check --fix .
install-hooks:
./scripts/install-pre-commit-hook.sh
test:
@if [ -n "$(FILE)" ]; then \
echo "Running specific test file: $(FILE)"; \
poetry run pytest anki_mcp_elevenlabs/tests/$(FILE) -v; \
else \
echo "Running all tests"; \
poetry run pytest anki_mcp_elevenlabs/tests/ -v; \
fi