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