neuron_session_save
Save or update session state to resume work across MCP sessions. Merges new progress, cursor, and working set with existing state, enabling agents to continue tasks without losing context.
Instructions
Save or update session state. Merges with existing state to support resumption across MCP sessions.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cursor | No | Where to resume — typically an index into working_set, a page number, or an ID | |
| metadata | No | Any extra context (e.g. target username, config) | |
| progress | No | Arbitrary progress data (e.g. {sent: 23, total: 50, failed: 2}) | |
| completed | No | Items already processed | |
| session_id | Yes | Session identifier (typically recipe slug or slug-label, e.g. 'instagram-scrape' or 'instagram-scrape-batch1') | |
| working_set | No | The full list of items to process |