Skip to main content
Glama

MindBridge MCP Server

Dockerfile818 B
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile ############################################# # Multi-stage Dockerfile for MindBridge MCP ############################################# # Stage 1: Build FROM node:lts-alpine as builder WORKDIR /app # Copy package files and install all dependencies (including devDependencies) COPY package.json package-lock.json* ./ RUN npm install # Copy the remaining source code COPY . . # Build the application RUN npm run build # Stage 2: Production image FROM node:lts-alpine WORKDIR /app # Copy only the necessary files COPY package.json package-lock.json* ./ RUN npm install --production # Copy built artifacts from builder stage COPY --from=builder /app/dist ./dist # Command to run the MCP server 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/pinkpixel-dev/mindbridge-mcp'

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