Cancel managed Atomic Article job

Cancel a non-terminal managed Content Writer job using optimistic concurrency. A Gate 2-ready or otherwise terminal job cannot be cancelled.

content_article_job_cancelAtomic ArticlesRead and write

Behavior

Read-only hint
Not declared
Destructive hint
True
Idempotent hint
Not declared
Open-world hint
Not declared

Parameters

NameTypeRequirementDescription
workspaceIdstringRequiredNo additional description.
jobIdstringRequiredNo additional description.
expectedVersionintegerRequiredNo additional description.

Input JSON Schema

Generated from the registered input schema
{
  "type": "object",
  "properties": {
    "workspaceId": {
      "type": "string",
      "minLength": 1
    },
    "jobId": {
      "type": "string",
      "minLength": 1
    },
    "expectedVersion": {
      "type": "integer",
      "exclusiveMinimum": 0,
      "maximum": 9007199254740991
    }
  },
  "required": [
    "workspaceId",
    "jobId",
    "expectedVersion"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema"
}

Call shape

Use an MCP client rather than sending this JSON directly. The client handles protocol negotiation, sessions, and authentication.

Protocol request
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "content_article_job_cancel",
    "arguments": {}
  }
}