Naag

live LegalBiology

State attorney-general multistate enforcement, from the National Association

4 tools
0ms auth
free tier 50 calls/day

Tools

naag_multistate_cases

Search the National Association of Attorneys General database of MULTISTATE enforcement cases — lawsuits and investigations that coalitions of US state attorneys general brought together, largely anti

No parameters required.

Try it
naag_case_detail

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

No parameters required.

Try it
naag_policy_letters

Multistate coalition policy letters — the comment letters and formal positions that groups of state attorneys general send jointly to Congress, federal agencies and companies, on subjects like robocal

No parameters required.

Try it
naag_press_releases

Announcements and analysis published by the National Association of Attorneys General: press releases on coalition actions state AGs have just taken, and Attorney General Journal articles on consumer

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/naag/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/naag/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"naag_multistate_cases","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("naag_multistate_cases", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("state attorney-general multistate enforcement, from the national association");