Skip to main content
Glama

Remote MCP with Azure Container Apps

by powerstar13
Dockerfile506 B
# Build stage FROM node:23-slim AS builder WORKDIR /app COPY package*.json ./ RUN npm ci COPY . . RUN npm run build # Production stage FROM node:23-slim AS production WORKDIR /app COPY --from=builder /app/package*.json ./ COPY --from=builder /app/build ./build # Remove dev dependencies and cache RUN npm ci --omit=dev && npm cache clean --force # Use a non-root user for security RUN addgroup --system appgroup && adduser --system --ingroup appgroup appuser USER appuser CMD ["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/powerstar13/copilot-mcp-poc'

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