We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/maximepeabody/simple-jira-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•487 B
# Use an official Python runtime as a parent image
FROM python:3.11-slim
# Set working directory in the container
WORKDIR /app
# Copy requirements first to leverage Docker cache
COPY requirements.txt .
# Install Python dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy the application code
COPY . .
# Expose the port the app runs on
EXPOSE 8000
# Run the FastAPI application with uvicorn
CMD ["uvicorn", "src.server:app", "--host", "0.0.0.0", "--port", "8000"]