# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
# Stage 1: Build
FROM node:16-alpine AS builder
# Set working directory
WORKDIR /app
# Copy package.json and package-lock.json
COPY package.json ./
# Install dependencies
RUN npm install
# Copy all source files
COPY . .
# Build the project
RUN npm run build
# Stage 2: Run
FROM node:16-alpine
# Set working directory
WORKDIR /app
# Copy compiled code and package.json
COPY --from=builder /app/dist /app/dist
COPY --from=builder /app/package.json /app/package.json
COPY --from=builder /app/package-lock.json /app/package-lock.json
# Install only production dependencies
RUN npm install --production
# Define environment variable for config path
ENV CONFIG_PATH=/app/config.json
# Set the entry point for the container
ENTRYPOINT ["node", "dist/bin/cli.js"]
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/raw391/coin_daemon_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server