We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/software-engineer-mj/slack-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
FROM python:3.12-slim
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /usr/local/bin/
WORKDIR /app
# Copy dependency files first for layer caching
COPY pyproject.toml uv.lock ./
# Install dependencies (no dev extras, use the lockfile)
RUN uv sync --frozen --no-dev
# Copy source
COPY src/ ./src/
# Run the MCP server (stdio transport by default)
CMD ["uv", "run", "python", "-m", "slack_mcp"]