We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/gcorroto/dba-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•513 B
# Stage 1: Build
FROM node:20-slim AS builder
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
RUN npm run build
# Stage 2: Production
FROM node:20-slim
WORKDIR /app
# Install dependencies strictly for production
COPY package*.json ./
RUN npm ci --omit=dev
# Copy built files
COPY --from=builder /app/build ./build
# Environment variables for configuration can be passed at runtime
# ENV ORACLE_CLIENT_LIB_DIR=... (Optional for Thick mode)
# Entrypoint
ENTRYPOINT ["node", "build/index.js"]
CMD []