search_patents

Pack: patents · Endpoint: https://gateway.pipeworx.io/patents/mcp

Search US patents by keyword in abstracts. Returns patent number, title, filing date, inventors, and assignee organization.

Parameters

NameTypeRequiredDescription
querystringyesKeyword or phrase to search in patent abstracts
per_pagenumbernoNumber of results to return (default 10, max 25)

Example call

Arguments

{
  "query": "machine learning neural networks"
}

curl

curl -X POST https://gateway.pipeworx.io/patents/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_patents","arguments":{"query":"machine learning neural networks"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('search_patents', {
  "query": "machine learning neural networks"
});

More examples

{
  "query": "blockchain cryptocurrency",
  "per_page": 20
}

Response shape

Always returns: query, total_results, returned, patents

FieldTypeDescription
querystringThe search query used
total_resultsnumberTotal number of matching patents
returnednumberNumber of patents in this response
patentsarrayList of patent summaries
Full JSON Schema
{
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "The search query used"
    },
    "total_results": {
      "type": "number",
      "description": "Total number of matching patents"
    },
    "returned": {
      "type": "number",
      "description": "Number of patents in this response"
    },
    "patents": {
      "type": "array",
      "description": "List of patent summaries",
      "items": {
        "type": "object",
        "properties": {
          "patent_number": {
            "type": "string",
            "description": "Patent number"
          },
          "title": {
            "type": "string",
            "description": "Patent title"
          },
          "date": {
            "type": [
              "string",
              "null"
            ],
            "description": "Patent filing date or null"
          },
          "inventors": {
            "type": "array",
            "description": "List of inventors",
            "items": {
              "type": "object",
              "properties": {
                "first_name": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "Inventor first name or null"
                },
                "last_name": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "Inventor last name or null"
                }
              }
            }
          },
          "assignee_organization": {
            "type": [
              "string",
              "null"
            ],
            "description": "Assignee organization name or null"
          }
        },
        "required": [
          "patent_number",
          "title",
          "date",
          "inventors",
          "assignee_organization"
        ]
      }
    }
  },
  "required": [
    "query",
    "total_results",
    "returned",
    "patents"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "patents": {
      "url": "https://gateway.pipeworx.io/patents/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026