# ---- Base Image ----
FROM node:18-alpine AS base
WORKDIR /app
# ---- Dependencies ----
FROM base AS dependencies
COPY package*.json ./
RUN npm install
# ---- Build ----
FROM dependencies AS build
COPY . .
RUN npm run build
# ---- Production ----
FROM base AS production
ENV NODE_ENV=production
COPY package*.json ./
RUN npm install --omit=dev
COPY --from=build /app/dist ./dist
EXPOSE 8081
CMD ["node", "dist/index.js", "--http"]
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/agent5ive/agent5ive-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server