clear_context_batch
Remove all subjects within a specified context using application-level batch operations, ensuring MCP compliance. Optionally delete the context post-clearance or simulate with a dry run.
Instructions
Clear all subjects in a context using application-level batch operations.
⚠️ APPLICATION-LEVEL BATCHING: Uses individual requests per MCP 2025-06-18 compliance.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context | Yes | ||
delete_context_after | No | ||
dry_run | No | ||
registry | No |
Input Schema (JSON Schema)
{
"properties": {
"context": {
"title": "Context",
"type": "string"
},
"delete_context_after": {
"default": true,
"title": "Delete Context After",
"type": "boolean"
},
"dry_run": {
"default": true,
"title": "Dry Run",
"type": "boolean"
},
"registry": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Registry"
}
},
"required": [
"context"
],
"type": "object"
}