federal_appeal_recent

Pack: federal-appeals · Endpoint: https://gateway.pipeworx.io/federal-appeals/mcp

List recent US federal appellate dockets, newest first, optionally limited to one circuit. No API key, no rate limit.

Parameters

NameTypeRequiredDescription
courtstringnoOptional circuit id, e.g. “ca9”, “ca2”, “cafc”, “scotus”.
filed_afterstringnoOnly cases filed on or after this date, YYYY-MM-DD.
limitnumbernoMaximum dockets to return (1-50, default 20).

Example call

Arguments

{
  "court": "ca9",
  "limit": 10
}

curl

curl -X POST https://gateway.pipeworx.io/federal-appeals/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"federal_appeal_recent","arguments":{"court":"ca9","limit":10}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('federal_appeal_recent', {
  "court": "ca9",
  "limit": 10
});

Connect

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

{
  "mcpServers": {
    "federal-appeals": {
      "url": "https://gateway.pipeworx.io/federal-appeals/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 9, 2026