receipt_status_set
ActiveTool of SaSame Research Agent
Record a lifecycle status against an issued receipt (rcp_* from receipt_issue, or atr_* agent transaction receipts): revoked / disputed / corrected / superseded. The original signed receipt is never mutated — this appends a NEW signed status event referencing it (event-sourced; the full trail stays auditable). Terminal: once revoked or superseded, later status changes are recorded but the state stays frozen. 'corrected' requires corrected_by = the replacement receipt id. Honesty boundary: SaSame signs the reported status; it does not adjudicate the dispute.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"receipt_id",
"status",
"status_reason"
],
"properties": {
"status": {
"enum": [
"revoked",
"disputed",
"corrected",
"superseded"
],
"type": "string"
},
"receipt_id": {
"type": "string",
"description": "rcp_* or atr_* id"
},
"corrected_by": {
"type": "string",
"description": "For status=corrected/superseded: the replacement receipt id (must exist)"
},
"status_reason": {
"type": "string",
"description": "Why (bounded free text; shown in the audit trail)"
},
"dispute_reason": {
"type": "string",
"description": "For status=disputed: the dispute grounds"
},
"reporter_label": {
"type": "string",
"description": "Self-claimed label of who reports this (unverified)"
}
}
}No endpoints wrapped at confidence ≥ 0.50.
Parent server
SaSame Research Agent
https://github.com/shigeki7777/sasame-mcp
2/7 registries