# MCP Elicitation Consent Transcript Auditor

> MCP Elicitation Consent Transcript Auditor is a paid API for AI agents from api.blockchainmoneymap.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Audits MCP tool elicitation transcripts for consent compliance, verifying presence of required consent fields, decline paths, and purpose disclosure against a policy.

## Facts

- Endpoint: POST https://api.blockchainmoneymap.com/api/x402/x402-mcp-elicitation-consent-transcript-auditor
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mcp-elicitation-consent-transcript-auditor-e039befb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ltW9FJFSNX49EjT-OZY5M

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability mcp-elicitation-consent-transcript-auditor-e039befb -d '<json body>'
```

Example prompt: Audit this MCP tool elicitation transcript for consent compliance: the tool is 'UserProfileCollector', the elicitation prompt summary is 'Requesting name, email, and location for personalization', requested fields are ['name','email','location'], consent_record_present is false, decline_path_present is true, purpose_text_present is true, and sensitive_fields_present is false — tell me if it passes policy.

## When to prefer this

Choose this endpoint when you need to programmatically audit AI agent or MCP tool elicitation flows for consent compliance — specifically when verifying that data collection prompts include required consent records, decline paths, purpose disclosures, and sensitive field warnings. Ideal for compliance pipelines, agent deployment gates, or ongoing monitoring of agent data collection practices. Prefer over manual review when you need structured, policy-driven, repeatable compliance checks at $0.01 per call.

## Known failure modes

- Missing required fields (tool_name, elicitation_prompt_summary, requested_fields, consent_record_present) returns validation error
- Invalid mode value (not 'audit') causes rejection
- Payment failure via x402 returns 402 response before processing
- Malformed policy object may cause unpredictable audit results
- requested_fields array exceeding 50 items is rejected

## How this service works

Choose Blockchain Money Map for human-readable public blockchain reports or x402-paid agent API services.

## Output

Returns a JSON object containing an audit assessment of the elicitation transcript, including compliance status, identification of missing consent elements (consent record, decline path, purpose text, sensitive field disclosures), policy gap analysis, and comparison results if reference_facts were provided.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "mode": {
   "enum": [
    "audit"
   ]
  },
  "facts": {
   "type": "object",
   "required": [
    "tool_name",
    "elicitation_prompt_summary",
    "requested_fields",
    "consent_record_present"
   ],
   "properties": {
    "tool_name": {
     "type": "string",
     "maxLength": 500
    },
    "scope_summary": {
     "type": "string",
     "maxLength": 500
    },
    "requested_fields": {
     "type": "array",
     "maxItems": 50
    },
    "decline_path_present": {
     "type": "boolean"
    },
    "purpose_text_present": {
     "type": "boolean"
    },
    "consent_record_present": {
     "type": "boolean"
    },
    "sensitive_fields_present": {
     "type": "boolean"
    },
    "elicitation_prompt_summary": {
     "type": "string",
     "maxLength": 500
    }
   },
   "additionalProperties": false
  },
  "policy": {
   "type": "object",
   "additionalProperties": true
  },
  "reference_facts": {
   "type": "object",
   "required": [
    "tool_name",
    "elicitation_prompt_summary",
    "requested_fields",
    "consent_record_present"
   ],
   "properties": {
    "tool_name": {
     "type": "string",
     "maxLength": 500
    },
    "scope_summary": {
     "type": "string",
     "maxLength": 500
    },
    "requested_fields": {
     "type": "array",
     "maxItems": 50
    },
    "decline_path_present": {
     "type": "boolean"
    },
    "purpose_text_present": {
     "type": "boolean"
    },
    "consent_record_present": {
     "type": "boolean"
    },
    "sensitive_fields_present": {
     "type": "boolean"
    },
    "elicitation_prompt_summary": {
     "type": "string",
     "maxLength": 500
    }
   },
   "additionalProperties": false
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mcp-elicitation-consent-transcript-auditor-e039befb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.blockchainmoneymap.com](https://www.zero.xyz/host/api.blockchainmoneymap.com/llms.txt)
