crs_recent

Pack: crs-reports · Endpoint: https://gateway.pipeworx.io/crs-reports/mcp

What the Congressional Research Service has published or revised lately — the newest CRS

Parameters

NameTypeRequiredDescription
daysnumbernoHow far back to look, in days. Default 14, max 365.
topicstringnoA CRS subject term — see crs_topics.
product_classstringnoCRS product family.
limitnumbernoResults to return, 1–50. Default 20.

Example call

Arguments

{
  "days": 14
}

curl

curl -X POST https://gateway.pipeworx.io/crs-reports/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"crs_recent","arguments":{"days":14}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('crs_recent', {
  "days": 14
});

More examples

{
  "days": 30,
  "product_class": "Reports",
  "limit": 5
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "crs-reports": {
      "url": "https://gateway.pipeworx.io/crs-reports/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 15, 2026