federal_civil_recent
Pack: federal-civil · Endpoint: https://gateway.pipeworx.io/federal-civil/mcp
List recent US federal civil lawsuits, newest first, optionally limited to one district. No API key, no rate limit.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
court | string | no | Optional federal district id, e.g. “cand”, “nysd”, “ilnd”. |
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": "cand",
"limit": 10
}
curl
curl -X POST https://gateway.pipeworx.io/federal-civil/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"federal_civil_recent","arguments":{"court":"cand","limit":10}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('federal_civil_recent', {
"court": "cand",
"limit": 10
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"federal-civil": {
"url": "https://gateway.pipeworx.io/federal-civil/mcp"
}
}
}
See Getting Started for client-specific install steps.