Get an Atomic Article batch

Read the current batch state, allowed next actions, immutable candidate, and host validation receipt. An independent reviewer uses this tool before peer review.

content_article_batch_getAtomic ArticlesRead only

Behavior

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

Parameters

NameTypeRequirementDescription
workspaceIdstringRequiredNo additional description.
batchIdstringRequiredNo additional description.

Input JSON Schema

Generated from the registered input schema
{
  "type": "object",
  "properties": {
    "workspaceId": {
      "type": "string",
      "minLength": 1
    },
    "batchId": {
      "type": "string",
      "minLength": 1
    }
  },
  "required": [
    "workspaceId",
    "batchId"
  ],
  "$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_batch_get",
    "arguments": {}
  }
}