We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/brneto/fabric-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•583 B
FROM python:3.11-slim
# Install git
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
# Install uv
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
# Set working directory
WORKDIR /app
# Copy dependency definition
COPY pyproject.toml .
# Install dependencies using uv
# --system installs into the system python environment, avoiding the need for a venv in the container
RUN uv pip install --system -r pyproject.toml
# Copy server code
COPY server.py .
# Create data directory
RUN mkdir -p /app/data
# Run the server
CMD ["python", "server.py"]