Skip to main content
Glama

n8n Workflow Builder MCP Server

by Jimmy974
Dockerfile865 B
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile # Use Node.js as the base image FROM node:20-alpine AS builder # Set the working directory in the container WORKDIR /app # Copy the package files and install dependencies COPY package.json package-lock.json ./ RUN npm install # Copy the source code COPY src ./src COPY tsconfig.json ./ # Compile the TypeScript code RUN npx tsc # Use a slim Node.js image for the final build FROM node:20-slim # Set the working directory in the container WORKDIR /app # Copy compiled code from the builder stage COPY --from=builder /app/dist ./dist # Install only production dependencies COPY package.json package-lock.json ./ RUN npm install --omit=dev # Expose any necessary ports (assuming 3000 as an example) EXPOSE 3000 # Command to run the application CMD ["node", "dist/index.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/Jimmy974/n8n-workflow-builder'

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