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
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | Free text over letter titles and bodies, e.g. “robocall”, “artificial intelligence”, “Know Your Customer”. |
state | string | no | A state that signed — two-letter code or full name. |
sent_from | string | no | Earliest letter date, YYYY-MM-DD. |
sent_to | string | no | Latest letter date, YYYY-MM-DD. |
limit | number | no | Letters to return, 1-50 (default 20). |
offset | number | no | Letters 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.