genart.dev
MCP ToolsArtist & Critique

series_summary

Capture all sketches in series with narrative context.

Input Schema

ParameterTypeRequiredDescription
seriesIdstringYesID of the series to summarize.
captureScreenshotsbooleanNoWhether to capture a screenshot of each sketch. Default: true.
previewSizenumberNoSize in pixels for each captured screenshot. Default: 300.

Output Shape

{
  "seriesId": "series-e7f2a1",
  "label": "Erosion Studies",
  "narrative": "...",
  "intent": "...",
  "progression": "...",
  "stages": {
    "studies": [
      {
        "sketchId": "sketch-001",
        "title": "Circle Erosion",
        "stage": "studies",
        "screenshot": "<base64 image>"
      }
    ],
    "drafts": [],
    "finals": []
  }
}

Side Effects

  • Captures screenshots of all sketches in the series when captureScreenshots is true.

Error Cases

ErrorCause
Series not foundThe provided seriesId does not match any existing series.
No sketches in seriesThe series exists but contains no sketches.

Golden Path Example

Request

{
  "seriesId": "series-e7f2a1",
  "captureScreenshots": true,
  "previewSize": 300
}

Response

{
  "seriesId": "series-e7f2a1",
  "label": "Erosion Studies",
  "narrative": "A series exploring how forms dissolve through iterative noise subtraction.",
  "intent": "Investigate the visual boundary between presence and absence.",
  "progression": "Move from geometric primitives to organic forms, increasing complexity.",
  "stages": {
    "studies": [
      {
        "sketchId": "sketch-001",
        "title": "Circle Erosion",
        "stage": "studies",
        "screenshot": "<base64 image>"
      },
      {
        "sketchId": "sketch-002",
        "title": "Grid Dissolution",
        "stage": "studies",
        "screenshot": "<base64 image>"
      }
    ],
    "drafts": [],
    "finals": []
  }
}