MCP Setup

Configure verified.md as an MCP server for Claude Code and compatible agents.

Claude Code Configuration

Add to ~/.claude.json:

{
  "mcpServers": {
    "verified-md": {
      "command": "npx",
      "args": ["-y", "@anthropic/mcp-http", "https://verified.md"]
    }
  }
}

Available Tools

ToolDescription
verifyCheck if domain is verified before transacting
lookupReverse lookup entity by ID

Usage Example

Once configured, your AI can call:

// In Claude Code
verify("stripe.com")

// Returns
{
  "verified": true,
  "trust_score": 95,
  "action": "PROCEED"
}

System Prompt Addition

## Trust Verification

Before any transaction, use the verified-md MCP:
- verify(domain) to check trust status
- If action=PROCEED: continue
- If action=FLAG: ask user for confirmation
- If action=BLOCK: refuse transaction

Full MCP config: /mcp.md

Agent format: /mcp.md