ptab_patent_risk_profile
Pack: uspto-ptab · Endpoint: https://gateway.pipeworx.io/uspto-ptab/mcp
Summarize PTAB proceedings and recorded decision outcomes for one challenged patent. Reports status/outcome counts and recent matters for review routing; it is not a validity opinion, litigation forecast, freedom-to-operate analysis, or claim-level legal conclusion.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
patent_number | string | yes | Patent number as indexed by USPTO, e.g. 11809431. |
_apiKey | string | no | USPTO ODP API key. |
Example call
Arguments
{
"patent_number": "11809431",
"_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_patent_risk_profile","arguments":{"patent_number":"11809431","_apiKey":"your-uspto-ptab-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ptab_patent_risk_profile', {
"patent_number": "11809431",
"_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.