We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/4rgon4ut/sutra'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•463 B
FROM python:3.11-slim-bookworm
# Install uv for fast dependency management
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
# Set working directory
WORKDIR /app
# Copy project files
COPY . .
# Install the package and uvicorn for HTTP support
RUN uv pip install --system . uvicorn
# Expose the default port
EXPOSE 8000
# Run the server (default to stdio, but overrideable by smithery.yaml)
ENTRYPOINT ["python", "-m", "context_engineering_mcp.server"]