docketalarm_search
Pack: docket-alarm · Endpoint: https://gateway.pipeworx.io/docket-alarm/mcp
Search court dockets (state + federal) for <query> — full-text search across 675M+ US state, county, and federal court dockets (deeper state coverage than CourtListener). Returns matching cases with court, docket number, title, filing date, and link. Example: docketalarm_search({ q: “patent infringement Apple”, limit: 20, _apiKey: “[email protected]:yourpassword” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
q | string | yes | Full-text search query. Supports fielded search, e.g. is:docket “Acme Corp”. |
limit | integer | no | Max results to return (default 20, max 50). |
offset | integer | no | Starting offset into the result set (for pagination). |
_apiKey | string | yes | Docket Alarm credentials as “username:password” from your docketalarm.com account. |
Example call
curl -X POST https://gateway.pipeworx.io/docket-alarm/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"docketalarm_search","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"docket-alarm": {
"url": "https://gateway.pipeworx.io/docket-alarm/mcp"
}
}
}
See Getting Started for client-specific install steps.