.PHONY: build test clean run-stdio run-sse
# Binary name
BINARY_NAME=luno-mcp
# Build the application
build:
go build -o $(BINARY_NAME) ./cmd/server
# Run all tests
test:
go test ./...
# Clean build files
clean:
go clean
rm -f $(BINARY_NAME)
# Run in stdio mode
run-stdio:
go run ./cmd/server
# Run in SSE mode
run-sse:
go run ./cmd/server --transport sse --sse-address localhost:8080
# Install the binary to your GOBIN path
install:
go install ./cmd/server
pre-commit:
pre-commit install
# Default target
default: build
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/luno/luno-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server