ptab_proceeding_timeline
Pack: uspto-ptab · Endpoint: https://gateway.pipeworx.io/uspto-ptab/mcp
Build a chronological PTAB proceeding timeline from the proceeding record and its public decision documents. Returns institution, final-written-decision, rehearing, settlement, dismissal, and other recorded decision events; absence of an event is not proof that it never occurred.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
proceeding_number | string | yes | PTAB trial number, e.g. IPR2024-00001. |
_apiKey | string | no | USPTO ODP API key. |
Example call
Arguments
{
"proceeding_number": "IPR2024-00001",
"_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_proceeding_timeline","arguments":{"proceeding_number":"IPR2024-00001","_apiKey":"your-uspto-ptab-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ptab_proceeding_timeline', {
"proceeding_number": "IPR2024-00001",
"_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.