We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/aktsmm/skill-ninja-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•449 B
# skill-ninja-mcp-server Dockerfile
# Glama.ai compatible Docker configuration
FROM node:20-alpine
# Set working directory
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install production dependencies only
RUN npm install --production
# Copy built files and resources
COPY dist ./dist
COPY resources ./resources
# Set environment variables
ENV NODE_ENV=production
# Entry point for MCP server
ENTRYPOINT ["node", "dist/index.js"]