Skip to main content
Glama

GIT MCP Server

by markheramis
Dockerfile727 B
FROM node:20-alpine AS builder # Install git for the build RUN apk add --no-cache git # Create app directory WORKDIR /app # Copy package files COPY package*.json ./ # Install dependencies RUN npm ci # Copy source files COPY . . # Build the TypeScript code RUN npm run build FROM node:20-alpine # Install git for runtime RUN apk add --no-cache git openssh # Create app directory WORKDIR /app # Copy from builder COPY --from=builder /app/dist /app/dist COPY --from=builder /app/package.json /app/package.json COPY --from=builder /app/package-lock.json /app/package-lock.json # Install production dependencies only ENV NODE_ENV=production RUN npm ci --omit=dev # Set the entrypoint 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/markheramis/mcp-git'

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