We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/cploujoux/mcp-puppeteer'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
FROM node:22-bookworm-slim
ENV DEBIAN_FRONTEND noninteractive
COPY index.ts /project/index.ts
COPY tsconfig.json /project/tsconfig.json
COPY package.json /project/package.json
WORKDIR /project
RUN npm install && npm run build
ENTRYPOINT ["node", "dist/index.js"]