Skip to main content
Glama

Windows CLI MCP Server

Dockerfile858 B
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile # Use an official Node.js runtime as a parent image FROM node:18-alpine AS build # Set the working directory in the container WORKDIR /app # Copy the package files and install the dependencies COPY package.json package-lock.json ./ RUN npm install --ignore-scripts # Copy the rest of the application COPY . . # Build the TypeScript code RUN npm run build # Use a lighter image for the runtime FROM node:18-alpine AS runtime WORKDIR /app # Copy the built application from the build stage COPY --from=build /app/dist ./dist COPY --from=build /app/package.json ./package.json COPY --from=build /app/package-lock.json ./package-lock.json # Install only production dependencies RUN npm ci --omit=dev # Command to run the application ENTRYPOINT ["node", "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/simon-ami/win-cli-mcp-server'

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