naag_press_releases
Pack: naag · Endpoint: https://gateway.pipeworx.io/naag/mcp
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 protection, antitrust, cybersecurity, public health and criminal law. Answers “what did state attorneys general announce recently” on a topic. Returns headline, date, topic category, summary and the naag.org link.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | Free text over headlines and summaries, e.g. “robocall”, “opioid settlement”, “data breach”. |
topic | string | no | Topic category, e.g. “consumer-protection”, “antitrust”, “cybersecurity-and-privacy”, “public-health”, “criminal-law”, “opioids”. |
published_from | string | no | Earliest publication date, YYYY-MM-DD. |
published_to | string | no | Latest publication date, YYYY-MM-DD. |
limit | number | no | Items to return, 1-50 (default 20). |
offset | number | no | Items to skip (default 0). |
Example call
Arguments
{
"topic": "antitrust",
"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_press_releases","arguments":{"topic":"antitrust","limit":2}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('naag_press_releases', {
"topic": "antitrust",
"limit": 2
});
More examples
{
"published_from": "2026-06-01",
"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.