MCP ToolsArtist & Critique
series_summary
Capture all sketches in series with narrative context.
Input Schema
| Parameter | Type | Required | Description |
|---|---|---|---|
seriesId | string | Yes | ID of the series to summarize. |
captureScreenshots | boolean | No | Whether to capture a screenshot of each sketch. Default: true. |
previewSize | number | No | Size 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
captureScreenshotsistrue.
Error Cases
| Error | Cause |
|---|---|
Series not found | The provided seriesId does not match any existing series. |
No sketches in series | The 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": []
}
}