We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mholzen/workflowy'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile.mcp•390 B
FROM golang:1.24-alpine AS builder
WORKDIR /src
COPY go.mod go.sum ./
RUN go mod download
COPY . .
RUN CGO_ENABLED=0 go build -ldflags="-s -w" -o /workflowy ./cmd/workflowy
FROM alpine:3.21
RUN apk add --no-cache ca-certificates
COPY --from=builder /workflowy /usr/local/bin/workflowy
LABEL io.modelcontextprotocol.server.name="io.github.mholzen/workflowy"
ENTRYPOINT ["workflowy", "mcp"]