We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/guangxiangdebizi/Paper-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•704 B
# Generated by https://smithery.ai. See: https://smithery.ai/docs/build/project-config
# Builder stage
FROM node:lts-alpine AS builder
WORKDIR /app
# Install all dependencies (including dev) and build
COPY package.json package-lock.json tsconfig.json ./
COPY src ./src
RUN npm ci
RUN npm run build
# Production stage
FROM node:lts-alpine AS runner
WORKDIR /app
# Install only production dependencies, skip scripts
COPY package.json package-lock.json ./
RUN npm ci --production --ignore-scripts
# Copy built application
COPY --from=builder /app/build ./build
# Default command: run the MCP server
# Note: Environment variables will be passed through from smithery.yaml
CMD ["node", "build/index.js"]