# Acknowledge Atomic Article context

Acknowledge every exact knowledge revision and hash with the concrete instructions that apply. Incomplete, duplicate, stale, foreign, or expired acknowledgements fail closed.

- Exact name: `content_article_context_acknowledge`
- Category: Atomic Articles
- Required access: write
- Allowed agent roles: admin
- MCP endpoint: `https://api.funnels.akera.agency/`

## Annotations

- None declared

## Input JSON Schema

```json
{
  "type": "object",
  "properties": {
    "workspaceId": {
      "type": "string",
      "minLength": 1
    },
    "batchId": {
      "type": "string",
      "minLength": 1
    },
    "resumeToken": {
      "type": "string",
      "minLength": 32
    },
    "expectedBatchVersion": {
      "type": "integer",
      "exclusiveMinimum": 0,
      "maximum": 9007199254740991
    },
    "contextReceiptId": {
      "type": "string",
      "minLength": 1
    },
    "acknowledgements": {
      "minItems": 1,
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "revisionId": {
            "type": "string",
            "minLength": 1
          },
          "sha256": {
            "type": "string",
            "pattern": "^[a-f0-9]{64}$"
          },
          "keyInstructions": {
            "type": "string",
            "minLength": 12,
            "maxLength": 1000
          }
        },
        "required": [
          "revisionId",
          "sha256",
          "keyInstructions"
        ]
      }
    }
  },
  "required": [
    "workspaceId",
    "batchId",
    "resumeToken",
    "expectedBatchVersion",
    "contextReceiptId",
    "acknowledgements"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema"
}
```

## Call shape

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "content_article_context_acknowledge",
    "arguments": {}
  }
}
```
