bulk_save_issues
Batch update multiple Linear issues with common fields in one round-trip, using a required confirmation phrase to prevent unintended mass changes.
Instructions
Apply the same update to multiple issues in one round-trip.
ids is a list of issue UUIDs. Every other arg is an
optional field to set on all of them (skip args you don't
want to change). Linear's issueBatchUpdate mutation does
the work server-side — way faster than N separate save_issue
calls for bulk ops like "mark these 50 as Done" or "reassign
these to me."
auth_phrase (REQUIRED, v0.3) must be one of: "go", "yes do it",
"confirmed", "execute", "go cancel", "go update". Without this
explicit confirmation a single hallucinated arg could
mass-modify pre-existing shared workspace data — surface the
requirement to the operator and capture their explicit phrase
before calling this tool.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ids | Yes | ||
| cycle_id | No | ||
| due_date | No | ||
| estimate | No | ||
| priority | No | ||
| state_id | No | ||
| label_ids | No | ||
| workspace | No | ||
| project_id | No | ||
| assignee_id | No | ||
| auth_phrase | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||