# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
# Use a Node.js base image that supports bun installation
FROM node:18-alpine as builder
# Install bun
RUN npm install -g bun
# Set the working directory
WORKDIR /app
# Copy package and lock files
COPY package.json bun.lockb ./
# Install dependencies using bun
RUN bun install
# Copy the rest of the application
COPY . .
# Build the application
RUN bun run build
# Create a release image
FROM node:18-alpine
# Install bun
RUN npm install -g bun
# Set the working directory
WORKDIR /app
# Copy built files from builder
COPY --from=builder /app/dist /app/dist
# Set the command to run the server
ENTRYPOINT ["node", "/app/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/launchthatbrand/mcp-graphql'
If you have feedback or need assistance with the MCP directory API, please join our Discord server