ptab_recent_decisions
Pack: uspto-ptab · Endpoint: https://gateway.pipeworx.io/uspto-ptab/mcp
Return and summarize recently issued public PTAB trial decisions, optionally filtered by trial type, patent, or party. Outcome labels describe the document-level USPTO record and require review in proceeding context; they are not claim-by-claim legal conclusions.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
days | number | no | Look-back window, 1–365 days (default 30). |
trial_type | string | no | Optional IPR, PGR, CBM, or DER. |
patent_number | string | no | |
party | string | no | |
limit | number | no | 1–100, default 25. |
_apiKey | string | no | USPTO ODP API key. |
Example call
Arguments
{
"days": 90,
"trial_type": "IPR",
"limit": 25,
"_apiKey": "your-uspto-ptab-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/uspto-ptab/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ptab_recent_decisions","arguments":{"days":90,"trial_type":"IPR","limit":25,"_apiKey":"your-uspto-ptab-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ptab_recent_decisions', {
"days": 90,
"trial_type": "IPR",
"limit": 25,
"_apiKey": "your-uspto-ptab-api-key"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"uspto-ptab": {
"url": "https://gateway.pipeworx.io/uspto-ptab/mcp"
}
}
}
See Getting Started for client-specific install steps.