Skip to main content
Glama

mcp-1panel

Official
by 1Panel-dev
FROM golang:1.23.7 AS build # Set the working directory WORKDIR /build RUN go env -w GOMODCACHE=/root/.cache/go-build # Install dependencies COPY go.mod go.sum ./ RUN --mount=type=cache,target=/root/.cache/go-build go mod download COPY . ./ # Build the server RUN --mount=type=cache,target=/root/.cache/go-build CGO_ENABLED=0 go build -trimpath -ldflags '-s -w' \ -o mcp-1panel main.go # Make a stage to run the app FROM alpine:3.21.3 # Set the working directory WORKDIR /server # Copy the binary from the build stage COPY --from=build /build/mcp-1panel . # Command to run the server CMD ["./mcp-1panel", "stdio"]

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/1Panel-dev/mcp-1panel'

If you have feedback or need assistance with the MCP directory API, please join our Discord server