We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/TAgents/agent-planner-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•907 B
# Production Dockerfile for planning-tools MCP HTTP Server
# Designed for deployment on Google Cloud Run
FROM node:20-alpine
# Set working directory
WORKDIR /app
# Install production dependencies only
COPY package*.json ./
RUN npm ci --only=production
# Copy application code
COPY src/ ./src/
# Create non-root user for security
RUN addgroup -g 1001 -S nodejs && \
adduser -S nodejs -u 1001 && \
chown -R nodejs:nodejs /app
# Switch to non-root user
USER nodejs
# Expose port (Cloud Run will set PORT env var)
EXPOSE 8080
# Environment variables
ENV NODE_ENV=production \
MCP_TRANSPORT=http \
PORT=8080 \
HOST=0.0.0.0
# Health check
HEALTHCHECK --interval=30s --timeout=3s --start-period=10s --retries=3 \
CMD node -e "require('http').get('http://localhost:8080/health', (r) => {process.exit(r.statusCode === 200 ? 0 : 1)})"
# Start the server
CMD ["node", "src/index.js"]