We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/abhinv98/postgre-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•499 B
# Use Apify base image for Node.js 20
FROM apify/actor-node:20
# Set working directory
WORKDIR /usr/src/app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm install --production=false
# Copy TypeScript source files
COPY tsconfig.json ./
COPY src ./src
# Build TypeScript
RUN npm run build
# Remove dev dependencies after build
RUN npm prune --production
# Copy Actor configuration
COPY .actor ./.actor
COPY README.md ./
# Run the Actor
CMD ["node", "dist/main.js"]