naag_case_detail

Pack: naag · Endpoint: https://gateway.pipeworx.io/naag/mcp

The full NAAG record for one multistate attorney-general case, given its numeric id or naag.org URL from naag_multistate_cases. Returns the complete complaint summary rather than a truncated one, plus every classification the record carries: participating states, lead plaintiff states, conduct type, civil or criminal, relief sought, resolution status, industry and any federal co-plaintiff.

Parameters

NameTypeRequiredDescription
casestringyesNumeric case id (e.g. “48390”) or the naag.org/multistate-case/… URL.

Example call

Arguments

{
  "case": "48390"
}

curl

curl -X POST https://gateway.pipeworx.io/naag/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"naag_case_detail","arguments":{"case":"48390"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('naag_case_detail', {
  "case": "48390"
});

More examples

{
  "case": "https://www.naag.org/multistate-case/new-jersey-v-amazon-com-inc-et-al/"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "naag": {
      "url": "https://gateway.pipeworx.io/naag/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 13, 2026