streamable-httpupdated 1mo ago
Check a draft support reply for what it should say and doesn't, before it goes to the customer.
What can you do with Agentic Diaries Audit?
Behavioral Audit MCP
Check a draft support reply for what it should say and doesn't, before it goes to the customer.
Part of Agentic Diaries. One hosted tool, disclosure_check.
What it does
Give it what a customer said and the reply you are about to send. It flags any should-know policy the customer's situation made relevant that your draft failed to proactively surface: a refund window, an auto-renewal, a retention offer, a warranty term. The knew-but-did-not-say gap, on a single message.
It returns a verdict, pass or gap. On a gap, it names each missed policy and the line that should have been there. It detects and suggests. It does not rewrite your reply, send anything, or keep the message beyond the check.
Install
One line. No login, no signup.
Claude Code:
claude mcp add --transport http behavioral-audit https://receipts-mcp.vercel.app/api/mcp
If you add it mid-session, restart Claude Code (or run /mcp) so the new tool appears.
Claude Desktop (or any MCP client), add to your config:
{
"mcpServers": {
"behavioral-audit": {
"type": "http",
"url": "https://receipts-mcp.vercel.app/api/mcp"
}
}
}
The tool: disclosure_check
Input:
customer_message(string) , what the customer said, verbatim.draft_reply(string) , the reply you are about to send.
Output: a verdict plus, on a gap, the policies your draft left out.
Example
A customer asks to cancel. Your draft confirms it but never mentions the refund window they still qualify for.
Request:
{
"customer_message": "I want to cancel my subscription today.",
"draft_reply": "Done, your subscription is cancelled. Sorry to see you go."
}
Result:
{
"verdict": "gap",
"misses": [
{
"id": "refund_window",
"title": "Refund window",
"suggestion": "You are within your 14-day refund window, so you can still request a refund for this billing period.",
"reason": "The customer is cancelling and qualifies for a refund they were not told about."
}
]
}
A clean reply returns verdict: "pass" with an empty misses list. That means clear to send, not that nothing ran.
Install
Add Agentic Diaries Audit to your client. Pick the one you use.
claude mcp add --transport http agentic-diaries-audit https://receipts-mcp.vercel.app/api/mcpcodex mcp add agentic-diaries-audit --url https://receipts-mcp.vercel.app/api/mcp{
"mcpServers": {
"agentic-diaries-audit": {
"url": "https://receipts-mcp.vercel.app/api/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"agentic-diaries-audit": {
"type": "http",
"url": "https://receipts-mcp.vercel.app/api/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"agentic-diaries-audit": {
"url": "https://receipts-mcp.vercel.app/api/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"agentic-diaries-audit": {
"serverUrl": "https://receipts-mcp.vercel.app/api/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation18/25
- Maintenance16/25
- Trust6/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 43 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 0.1.0Latest | Jul 19, 2026 |