We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/leorosignoli/jira-zephyr-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•293 B
# Use Node.js 18 as base image
FROM node:18
# Set working directory
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm install
# Copy source code
COPY . .
# Build the project
RUN npm run build
# Command to run the server
CMD ["node", "dist/index.js"]