Skip to main content
Glama

MCP Log Reader

Dockerfile739 B
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile # Use Node LTS on Alpine FROM node:lts-alpine AS builder # Set working directory WORKDIR /app # Copy dependency definitions COPY package.json package-lock.json tsconfig.json ./ # Copy source COPY src ./src COPY assets ./assets # Install dependencies (skip prepare scripts), then build RUN npm ci --ignore-scripts RUN npm run build # Final image FROM node:lts-alpine AS runtime WORKDIR /app # Copy built files and assets COPY --from=builder /app/build ./build COPY --from=builder /app/node_modules ./node_modules COPY --from=builder /app/assets ./assets # Expose any needed port (none by default) # Entry point ENTRYPOINT ["node", "build/index.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/klara-research/MCP-Analyzer'

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