We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/systeminit/si'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•546 B
# Build stage
FROM denoland/deno:2.4.2 AS builder
WORKDIR /app
# Copy source files
COPY . .
WORKDIR /app/bin/si-mcp-server
RUN deno install
# Compile the application
RUN deno compile --allow-env --allow-net --output=si-mcp-server main.ts
# Runtime stage - use deno alpine image for compatibility
FROM denoland/deno:alpine
# Copy the compiled binary from builder stage
COPY --from=builder /app/bin/si-mcp-server/si-mcp-server /si-mcp-server
# Set the entrypoint to run the binary with stdio argument
ENTRYPOINT ["/si-mcp-server", "stdio"]