Skip to main content
Glama

Dixa MCP Server

by ktabori
Dockerfile574 B
FROM node:22-alpine AS builder WORKDIR /app # Copy package files COPY package.json package-lock.json ./ # Install dependencies RUN npm ci # Copy source code COPY . . # Build the application RUN npm run build # Production stage FROM node:22-alpine AS runner WORKDIR /app # Copy package files COPY package.json package-lock.json ./ # Install production dependencies only RUN npm ci --omit=dev # Copy built files from builder stage COPY --from=builder /app/dist ./dist # Set environment variables ENV NODE_ENV=production # Start the application CMD ["npm", "start"]

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/ktabori/dixa-mcp'

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