Skip to main content
Glama

DNStwist MCP Server

MIT License
62
  • Apple
  • Linux
Dockerfile808 B
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile # Start with a Node.js image FROM node:18-alpine AS builder # Set the working directory WORKDIR /app # Copy package.json and package-lock.json COPY package.json package-lock.json ./ # Install dependencies RUN npm install # Copy the source code COPY src ./src # Copy the tsconfig file COPY tsconfig.json ./ # Build the TypeScript code RUN npm run build # Use a smaller image for runtime FROM node:18-alpine AS runtime # Set the working directory WORKDIR /app # Copy built files and package.json COPY --from=builder /app/build ./build COPY --from=builder /app/package.json ./ # Install only production dependencies RUN npm install --omit=dev # Set the command to run the server ENTRYPOINT ["node", "build/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/mikeysrecipes/mcp-dnstwist'

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