MCP ToolsArtist & Critique
create_series
Create curated series with narrative, intent, stages.
Input Schema
| Parameter | Type | Required | Description |
|---|---|---|---|
label | string | Yes | Display label for the series. |
narrative | string | Yes | Narrative description of the series theme or story. |
intent | string | Yes | Artistic intent — what the series aims to explore or communicate. |
progression | string | No | Description of how the series should evolve across stages. |
stages | array of "studies" | "drafts" | "refinements" | "finals" | No | Which stages to include. Defaults to all four. |
sketchFiles | array of string | No | File paths of existing sketches to include in the series. |
Output Shape
{
"seriesId": "series-abc123",
"label": "Erosion Studies",
"narrative": "...",
"intent": "...",
"progression": "...",
"stages": ["studies", "drafts", "refinements", "finals"],
"sketches": []
}Side Effects
- Creates a new series in the workspace.
- If
sketchFilesare provided, adds those sketches to the series.
Error Cases
| Error | Cause |
|---|---|
Label is required | The label parameter was empty or missing. |
Narrative is required | The narrative parameter was empty or missing. |
Intent is required | The intent parameter was empty or missing. |
Sketch file not found | One or more paths in sketchFiles do not point to valid sketch files. |
Invalid stage | An unrecognized stage string was included in the stages array. |
Golden Path Example
Request
{
"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", "drafts", "finals"]
}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", "drafts", "finals"],
"sketches": []
}