Skip to main content
Glama
Dockerfile937 B
# syntax=docker/dockerfile:1.19 FROM golang:1.25-alpine@sha256:d3f0cf7723f3429e3f9ed846243970b20a2de7bae6a5b66fc5914e228d831bbb 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