FROM node:24-slim AS build
WORKDIR /app
# Install Java runtime (required for OpenAPI Generator)
RUN apt-get update && \
apt-get install -y --no-install-recommends default-jre-headless && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
# Copy package files and install dependencies
COPY package*.json ./
RUN npm ci
# Copy source code and build the application
COPY . .
RUN npm run build
# Use a command that keeps the container running but doesn't start the MCP server
# This allows us to use `docker-compose exec` to start the server on demand
CMD ["tail", "-f", "/dev/null"]
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/8beeeaaat/touchdesigner-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server