We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ronantakizawa/gis-dataconvertersion-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# Use Node 15 (specifically a stable minor version)
FROM node:15.14.0
# Create app directory
WORKDIR /app
# Copy only package files first for faster caching
COPY package*.json ./
# Install dependencies
RUN npm install --ignore-scripts
# Copy source files (including tsconfig.json etc)
COPY . .
# Build TypeScript
RUN npm run build
# Default command
ENTRYPOINT ["node", "dist/index.js"]