patent
Pack: lens-org · Endpoint: https://gateway.pipeworx.io/lens-org/mcp
Fetch a single Lens.org patent record by its lens_id (requires Bearer token); returns full bibliographic data including claims, inventors, and priority dates.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
lens_id | string | yes |
Example call
Arguments
{
"lens_id": "US10123456B2"
}
curl
curl -X POST https://gateway.pipeworx.io/lens-org/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"patent","arguments":{"lens_id":"US10123456B2"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('patent', {
"lens_id": "US10123456B2"
});
Response shape
Full JSON Schema
{
"type": "object",
"description": "Single patent record from Lens.org API"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"lens-org": {
"url": "https://gateway.pipeworx.io/lens-org/mcp"
}
}
}
See Getting Started for client-specific install steps.