We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/stefanoamorelli/fred-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•504 B
FROM node:lts-alpine
# Create app directory
WORKDIR /app
# Install pnpm
RUN npm install -g pnpm
# Copy package.json and lock files
COPY package.json pnpm-lock.yaml* ./
# Install all dependencies (including dev dependencies for build)
RUN pnpm install --frozen-lockfile
# Copy source code
COPY . .
# Build the project
RUN pnpm run build
# Remove dev dependencies after build
RUN pnpm prune --prod
# Expose no ports, use stdio
# Default command to run the MCP server
CMD ["node", "build/index.js"]