{
  "schema_version": "1.0",
  "provider": {
    "name": "Better Call Claude",
    "url": "https://bettercallclaude.org"
  },
  "documentation_url": "https://bettercallclaude.org/for-agents",
  "skills": [
    {
      "id": "draft-demand-letter",
      "name": "Draft a demand letter for a consumer dispute",
      "description": "Turn a plain-language description of a dispute into a signable demand letter with a deadline, amount owed and provenance footer.",
      "tags": [
        "legal",
        "letters",
        "consumer"
      ],
      "endpoint": "https://bettercallclaude.org/mcp",
      "input_schema": {
        "type": "object",
        "properties": {
          "situation": {
            "type": "string",
            "description": "What happened, in plain language."
          },
          "state": {
            "type": "string",
            "description": "US state the user is in."
          },
          "amount": {
            "type": "number",
            "description": "Amount in dispute, USD."
          }
        },
        "required": [
          "situation"
        ],
        "additionalProperties": false
      }
    },
    {
      "id": "find-small-claims-rules",
      "name": "Find out how to sue in small claims where I live",
      "description": "Return dollar limits, filing fees, service rules and the consumer-protection agency for a US state.",
      "tags": [
        "legal",
        "small-claims"
      ],
      "endpoint": "https://bettercallclaude.org/mcp",
      "input_schema": {
        "type": "object",
        "properties": {
          "state": {
            "type": "string"
          }
        },
        "required": [
          "state"
        ],
        "additionalProperties": false
      }
    },
    {
      "id": "resolve-dispute-abroad",
      "name": "Resolve a consumer dispute outside the United States",
      "description": "Return the consumer dispute-resolution path for a country, in that country's language, including the regulator to escalate to.",
      "tags": [
        "legal",
        "international"
      ],
      "endpoint": "https://bettercallclaude.org/mcp",
      "input_schema": {
        "type": "object",
        "properties": {
          "country": {
            "type": "string"
          }
        },
        "required": [
          "country"
        ],
        "additionalProperties": false
      }
    },
    {
      "id": "look-up-a-person",
      "name": "Look up public records on a person before a dispute",
      "description": "Run a public-web sweep on a name and return a structured dossier of public profiles and mentions. Metered.",
      "tags": [
        "research",
        "people-search"
      ],
      "endpoint": "https://bettercallclaude.org/api/public/people-search",
      "input_schema": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "location": {
            "type": "string"
          }
        },
        "required": [
          "name"
        ],
        "additionalProperties": false
      },
      "pricing": {
        "currency": "USD",
        "amount": "0.01",
        "unit": "call"
      }
    },
    {
      "id": "find-dispute-contacts",
      "name": "Find the dispute department for a bank, lender or credit bureau",
      "description": "Return dispute, escalation and legal-department contact details for major US financial brands.",
      "tags": [
        "contacts",
        "consumer"
      ],
      "endpoint": "https://bettercallclaude.org/resources",
      "input_schema": {
        "type": "object",
        "properties": {
          "brand": {
            "type": "string"
          }
        },
        "required": [
          "brand"
        ],
        "additionalProperties": false
      }
    }
  ]
}