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

NameTypeRequiredDescription
querystringnoFree text over headlines and summaries, e.g. “robocall”, “opioid settlement”, “data breach”.
topicstringnoTopic category, e.g. “consumer-protection”, “antitrust”, “cybersecurity-and-privacy”, “public-health”, “criminal-law”, “opioids”.
published_fromstringnoEarliest publication date, YYYY-MM-DD.
published_tostringnoLatest publication date, YYYY-MM-DD.
limitnumbernoItems to return, 1-50 (default 20).
offsetnumbernoItems 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.

Regenerated from source · build September 13, 2026