naag_policy_letters

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

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 robocalls, AI, opioids and consumer data. Answers “have state AGs written to the FCC about this” and “which states signed that coalition letter”. Returns the letter title, date, signing states and a summary, sourced from NAAG.

Parameters

NameTypeRequiredDescription
querystringnoFree text over letter titles and bodies, e.g. “robocall”, “artificial intelligence”, “Know Your Customer”.
statestringnoA state that signed — two-letter code or full name.
sent_fromstringnoEarliest letter date, YYYY-MM-DD.
sent_tostringnoLatest letter date, YYYY-MM-DD.
limitnumbernoLetters to return, 1-50 (default 20).
offsetnumbernoLetters to skip (default 0).

Example call

Arguments

{
  "query": "robocall",
  "limit": 2
}

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_policy_letters","arguments":{"query":"robocall","limit":2}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('naag_policy_letters', {
  "query": "robocall",
  "limit": 2
});

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