Skip to main content
Glama

MCP Evolution API

by aiteks-ltda
Dockerfile746 B
FROM node:20-bullseye AS builder WORKDIR /app # Install dependencies COPY package.json package-lock.json* ./ RUN npm ci --production=false --silent || npm install --silent # Copy source COPY . . # Build the TypeScript project into dist RUN npx esbuild src/main.ts --bundle --platform=node --outfile=dist/main.js --target=node18 --format=esm && chmod +x dist/main.js FROM node:20-bullseye-slim WORKDIR /app # Copy built files and production deps COPY --from=builder /app/dist ./dist COPY package.json package-lock.json* ./ # Install only production dependencies RUN npm ci --production --silent || npm install --production --silent EXPOSE 3000 # Start with node (script expects to run as a stdio MCP server) CMD ["node", "dist/main.js"]

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/aiteks-ltda/mcp-evolution-whatsapp-api'

If you have feedback or need assistance with the MCP directory API, please join our Discord server