Skip to main content
Glama

Targetprocess MCP Server

# Dockerfile adapted from PR #7 by smithery-ai # Build stage FROM node:20.11-bullseye AS builder # Install build dependencies ENV NODE_ENV=development RUN apt-get update && apt-get install -y \ git \ build-essential \ python3 \ && rm -rf /var/lib/apt/lists/* WORKDIR /app # Copy all files first since we need them for the prepare script COPY . . # Install dependencies and build RUN npm ci && npm run build # Production stage FROM node:20.11-bullseye ENV NODE_ENV=production WORKDIR /app COPY --from=builder /app/build ./build COPY --from=builder /app/package*.json ./ COPY --from=builder /app/config ./config RUN npm ci --only=production COPY docker-entrypoint.sh /usr/local/bin/ RUN chmod +x /usr/local/bin/docker-entrypoint.sh ENTRYPOINT ["docker-entrypoint.sh"]

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/aaronsb/apptio-target-process-mcp'

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