Skip to main content
Glama

Iaptic MCP Server

Official
by iaptic
Dockerfile888 B
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile # Use a Node.js image with version >=18 FROM node:18-alpine AS builder # Set the working directory inside the Docker container WORKDIR /app # Copy package files COPY package.json package-lock.json ./ # Install dependencies RUN npm install # Copy the rest of the application code COPY . . # Build the application RUN npm run build # Use a smaller Node.js image to run the app FROM node:18-alpine # Set the working directory inside the Docker container WORKDIR /app # Copy built files from the builder COPY --from=builder /app/dist /app/dist COPY --from=builder /app/package.json /app/package-lock.json /app # Install only production dependencies RUN npm install --only=production # Expose the port that the app runs on EXPOSE 3000 # Command to run the application CMD ["node", "dist/server.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/iaptic/mcp-server-iaptic'

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