We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Koneisto/mcp-weather'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
FROM node:22.22-alpine
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm install --legacy-peer-deps
COPY build/ ./build/
RUN npm install -g supergateway
EXPOSE 3000
CMD ["supergateway", "--stdio", "node /app/build/index.js", "--port", "3000", "--outputTransport", "streamableHttp"]