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

NameTypeRequiredDescription
daysnumbernoLook-back window, 1–365 days (default 30).
trial_typestringnoOptional IPR, PGR, CBM, or DER.
patent_numberstringno
partystringno
limitnumberno1–100, default 25.
_apiKeystringnoUSPTO 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.

Regenerated from source · build August 3, 2026