patents_search
Pack: lens-org · Endpoint: https://gateway.pipeworx.io/lens-org/mcp
Search Lens.org patent database by free-text or Lucene query (requires Bearer token); returns up to 1000 patent records with title, applicant, filing date, and claims.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Free-text or Lucene-style query. |
size | number | no | 1-1000 (default 25). |
from | number | no |
Example call
Arguments
{
"query": "artificial intelligence machine learning"
}
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":"patents_search","arguments":{"query":"artificial intelligence machine learning"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('patents_search', {
"query": "artificial intelligence machine learning"
});
More examples
{
"query": "assignee:\"Google LLC\"",
"size": 50,
"from": 0
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "Patent search results 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.