# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
# Stage 1: Build the application
FROM node:18-alpine AS builder
# Set the working directory
WORKDIR /app
# Copy the package.json and package-lock.json
COPY package.json package-lock.json ./
# Install dependencies
RUN npm install
# Copy the rest of the application
COPY . .
# Build the application
RUN npm run build
# Stage 2: Create the final image
FROM node:18-alpine
# Set the working directory
WORKDIR /app
# Copy only the necessary files from the builder stage
COPY --from=builder /app/build /app/build
COPY --from=builder /app/node_modules /app/node_modules
# Define environment variables (to be replaced with actual values)
ENV JIRA_EMAIL=your-email@example.com
ENV JIRA_API_TOKEN=your-api-token
ENV JIRA_DOMAIN=your-domain
# Entrypoint command to run the application
CMD ["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/1broseidon/mcp-jira-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server