We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/itsablabla/garza-home-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
FROM node:20-slim
WORKDIR /app
# Install build tools for native modules (sharp, etc)
RUN apt-get update && apt-get install -y python3 make g++ && rm -rf /var/lib/apt/lists/*
COPY package*.json ./
RUN npm install --omit=dev
COPY server.js ./
EXPOSE 8080
CMD ["node", "server.js"]