get_patent

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

Get full patent details by patent number (e.g., “5123456”). Returns title, abstract, filing date, patent type, inventors, and assignee.

Parameters

NameTypeRequiredDescription
numberstringyesPatent number (e.g. “7654321”)

Example call

Arguments

{
  "number": "7654321"
}

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":"get_patent","arguments":{"number":"7654321"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_patent', {
  "number": "7654321"
});

Response shape

Always returns: patent_number, title, abstract, date, type, inventors, assignee_organization

FieldTypeDescription
patent_numberstringPatent number
titlestringPatent title
abstractstring | nullPatent abstract or null
datestring | nullPatent filing date or null
typestring | nullPatent type or null
inventorsarrayList of inventors with details
assignee_organizationstring | nullAssignee organization name or null
Full JSON Schema
{
  "type": "object",
  "properties": {
    "patent_number": {
      "type": "string",
      "description": "Patent number"
    },
    "title": {
      "type": "string",
      "description": "Patent title"
    },
    "abstract": {
      "type": [
        "string",
        "null"
      ],
      "description": "Patent abstract or null"
    },
    "date": {
      "type": [
        "string",
        "null"
      ],
      "description": "Patent filing date or null"
    },
    "type": {
      "type": [
        "string",
        "null"
      ],
      "description": "Patent type or null"
    },
    "inventors": {
      "type": "array",
      "description": "List of inventors with details",
      "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"
          },
          "city": {
            "type": [
              "string",
              "null"
            ],
            "description": "Inventor city or null"
          },
          "state": {
            "type": [
              "string",
              "null"
            ],
            "description": "Inventor state or null"
          }
        }
      }
    },
    "assignee_organization": {
      "type": [
        "string",
        "null"
      ],
      "description": "Assignee organization name or null"
    }
  },
  "required": [
    "patent_number",
    "title",
    "abstract",
    "date",
    "type",
    "inventors",
    "assignee_organization"
  ]
}

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