crs_search

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

Find Congressional Research Service (CRS) reports on a policy topic, statute or programme

Parameters

NameTypeRequiredDescription
querystringnoWhat to search for. Supports quoted phrases and a leading minus to exclude:
topicstringnoOne of CRS’s own subject terms, e.g. ‘U.S. Trade Policy’. Exact match — call
product_classstringnoCRS product family: Reports (long R/RL/RS reports), Resources (two-page In Focus),
authorstringnoA CRS analyst, exactly as CRS credits them.
published_sincestringnoEarliest publication date, YYYY-MM-DD.
published_beforestringnoLatest publication date, YYYY-MM-DD.
limitnumbernoResults to return, 1–50. Default 10.

Example call

Arguments

{
  "query": "tariffs"
}

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_search","arguments":{"query":"tariffs"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('crs_search', {
  "query": "tariffs"
});

More examples

{
  "query": "\"section 232\" tariffs",
  "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