We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Koveh/jira-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
FROM python:3.12-slim
WORKDIR /app
# Install curl for healthcheck
RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
# Install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy application code
COPY jira_client.py .
COPY mcp_server.py .
COPY http_server.py .
COPY cli.py .
# Expose port
EXPOSE 4200
# Health check
HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
CMD curl -f http://localhost:4200/health || exit 1
# Run server
CMD ["python", "http_server.py"]