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
| Name | Type | Required | Description |
|---|---|---|---|
court | string | no | Optional circuit id, e.g. “ca9”, “ca2”, “cafc”, “scotus”. |
filed_after | string | no | Only cases filed on or after this date, YYYY-MM-DD. |
limit | number | no | Maximum 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.