Skip to main content
Glama

Canvas MCP Server

Dockerfile1.06 kB
# Use Python 3.12 slim image for smaller size FROM python:3.12-slim # Set working directory WORKDIR /app # Install uv package manager for faster dependency installation RUN pip install --no-cache-dir uv # Copy project files COPY pyproject.toml ./ COPY LICENSE ./ COPY README.md ./ COPY env.template ./ COPY src/ ./src/ # Install dependencies using uv RUN uv pip install --system --no-cache -e . # Create non-root user for security RUN adduser --disabled-password --gecos '' mcp && \ chown -R mcp:mcp /app # Set environment variables (users must provide CANVAS_API_TOKEN and CANVAS_API_URL at runtime) # Example: docker run -e CANVAS_API_TOKEN=xyz -e CANVAS_API_URL=https://... canvas-mcp ENV MCP_SERVER_NAME="canvas-mcp" \ ENABLE_DATA_ANONYMIZATION="false" \ ANONYMIZATION_DEBUG="false" # Switch to non-root user USER mcp # Health check to verify installation HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \ CMD python -c "import canvas_mcp; print('OK')" || exit 1 # Run the MCP server CMD ["canvas-mcp-server"]

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/vishalsachdev/canvas-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server