recap_filings

Pack: recap · Connect: https://pipeworx.io/mcp (see Connect below for a single-pack URL)

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/recap_filings for the schema, then POST the same URL with its arguments for the data.

List the DOCUMENTS FILED in a US federal court case — complaints, motions, orders, exhibits — with a direct link to each PDF. Reads the free RECAP archive on the Internet Archive; no API key and no PACER fee. Give a docket_id from a docket search, or a court and docket number. Returns document links and docket-entry numbering, NOT document text. Coverage is partial (about 36% of dockets, higher in appellate courts) because RECAP holds only what PACER users have contributed.

Parameters

NameTypeRequiredDescription
docket_idnumbernoDocket id from federal_civil_search, federal_criminal_search, bankruptcy_search or federal_appeal_search.
courtstringnoCourt id, e.g. “nysd” — use together with docket_number.
docket_numberstringnoDocket number as the court records it, e.g. “1:15-cv-02842”.
limitnumbernoMaximum documents to return (1-200, default 50).

Example call

Arguments

{
  "docket_id": 73433096
}

curl

curl -X POST https://gateway.pipeworx.io/recap/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"recap_filings","arguments":{"docket_id":73433096}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('recap_filings', {
  "docket_id": 73433096
});

Connect

Add this to your MCP client config — every tool in the catalog, including this one — or use one-click install buttons:

{
  "mcpServers": {
    "pipeworx": {
      "url": "https://pipeworx.io/mcp"
    }
  }
}
Connect to just the recap pack
{
  "mcpServers": {
    "recap": {
      "url": "https://gateway.pipeworx.io/recap/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 25, 2026