Skip to main content
Glama

Luno MCP Server

Official
by luno
Dockerfile937 B
# syntax=docker/dockerfile:1.19 FROM golang:1.25-alpine@sha256:aee43c3ccbf24fdffb7295693b6e33b21e01baec1b2a55acc351fde345e9ec34 AS builder WORKDIR /app # Copy go.mod and go.sum first for better layer caching COPY go.mod go.sum ./ # Download dependencies with cache mounts RUN --mount=type=cache,target=/go/pkg/mod \ --mount=type=cache,target=/root/.cache/go-build \ go mod download # Copy source code COPY . . # Build the binary with cache mounts RUN --mount=type=cache,target=/go/pkg/mod \ --mount=type=cache,target=/root/.cache/go-build \ CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -ldflags="-s -w" -o /luno-mcp ./cmd/server FROM alpine:3.22@sha256:4b7ce07002c69e8f3d704a9c5d6fd3053be500b7f1c69fc0d80990c2ad8dd412 RUN apk --no-cache add ca-certificates && \ addgroup -g 1001 app && \ adduser -D -u 1001 -G app app COPY --from=builder /luno-mcp /luno-mcp USER app ENTRYPOINT ["/luno-mcp"]

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