Patent & IP Risk

Utility Patent Detector MCP Tool

Detect and search for similar utility/invention patents based on product information.

MCP tool name
nexscope_utility_patent_detector
Equivalent REST API path
https://claw-callback.nexscope.ai/api/skill-api/v1/skills/utility-patent-detector/run
JSON-RPC method
tools/call

Authentication

Send the user API key as a bearer token on every MCP JSON-RPC request.

Authorization: Bearer nk_xxxxxxxxxxxxxxxxx

If authentication is missing or invalid, ask the user to open API Access and copy a valid key before calling this tool.

Call this MCP tool

Use tools/call with the MCP tool name below. The arguments object should match the table on this page.

{
  "jsonrpc": "2.0",
  "id": "utility-patent-detector-1",
  "method": "tools/call",
  "params": {
    "name": "nexscope_utility_patent_detector",
    "arguments": {
      "region": "US",
      "productTitle": "Magnetic phone case with ring stand",
      "topNumber": 10,
      "productDescription": "A protective smartphone case with a magnetic ring stand and shockproof corners."
    }
  }
}
REST API equivalent
POST /api/skill-api/v1/runhttps://claw-callback.nexscope.ai/api/skill-api/v1/skills/utility-patent-detector/run
Canonical detail URL
https://www.nexscope.ai/mcp-map/utility-patent-detector

Arguments

NameTypeRequiredMeaning
productTitlestringrequired
Product title, max 1000 characters
Example: Magnetic phone case with ring stand
productDescriptionstringrequired
Product description, max 1000 characters
Example: A protective smartphone case with a magnetic ring stand and shockproof corners.
regionstringrequired
Country/region code(s) where the product is intended for sale, multiple separated by commas. Currently supports US. Default US
Example: US
topNumberintegerrequired
Number of results to recall, range: 10--200, default 100
Example: 10

Response fields

Treat structuredContent as the programmatic API response payload.

NameTypeRequiredMeaning
totalintegeroptional
Record count
Example: 1
detectIdstringoptional
Detection ID
Example: example-id
costTokenintegeroptional
Token cost
Example: 1
typestringoptional
Render style
Example: {}
columnsarrayoptional
Render column definitions
Example: []
dataarrayoptional
Patent list (see below)
Example: []
data[].globalUtilityIdstringoptional
Patent ID
Example: example-id
data[].titlestringoptional
Utility patent title
Example: {}
data[].titleCnstringoptional
Utility patent title (Chinese)
Example: {}
data[].similaritynumberoptional
Similarity between the product and this patent (0--1)
Example: 1
data[].patentValiditystringoptional
Patent validity: Active or Invalid
Example: {}
data[].applicationNumberstringoptional
Application number
Example: {}
data[].applicationDatestringoptional
Application date (yyyy-MM-dd)
Example: 2026-01-01
data[].publicationNumberstringoptional
Publication number
Example: {}
data[].publicationDatestringoptional
Publication date (yyyy-MM-dd)
Example: 2026-01-01
data[].estimatedDueDatestringoptional
Estimated expiration date (yyyy-MM-dd)
Example: 2026-01-01
data[].regionstringoptional
Receiving office
Example: US
data[].patentAbstractstringoptional
Abstract
Example: {}
data[].patentAbstractCnstringoptional
Abstract (Chinese)
Example: {}
data[].claimsstringoptional
Claims
Example: {}
data[].claimsCnstringoptional
Claims (Chinese)
Example: {}
data[].specificationstringoptional
Specification
Example: {}
data[].specificationCnstringoptional
Specification (Chinese)
Example: {}
data[].inventorsarrayoptional
Inventors and countries concatenated, array format
Example: []
data[].inventorAddressesarrayoptional
Inventor addresses, array format
Example: []
data[].applicantsarrayoptional
Applicants and countries concatenated, array format
Example: []
data[].applicantAddressesarrayoptional
Rights holder addresses, array format
Example: []
data[].priorityNumberarrayoptional
Priority numbers, array format
Example: []
data[].relatedPublicationDatearrayoptional
First publication dates (yyyy-MM-dd), array format
Example: []
data[].patentImageUrlstringoptional
Patent cover image
Example: https://example.com/image.jpg
data[].imagesarrayoptional
Patent drawings
Example: []
data[].classNumListarrayoptional
Classification number path list, format: classNum1 > classNum2 > classNum3
Example: []
data[].cpcKindRawarrayoptional
CPC classification (raw JSONArray)
Example: []
data[].troCasebooleanoptional
Whether there is a TRO enforcement history
Example: false
data[].troHolderbooleanoptional
Whether it is a patent of a TRO rights holder
Example: false
errcodeintegeroptional
Upstream status code returned by the provider.
Example: {}
errmsgstringoptional
Upstream status message returned by the provider.
Example: {}
codestringoptional
Provider-specific status code.
Example: {}
msgstringoptional
Provider-specific status message.
Example: {}
messagestringoptional
Provider-specific message.
Example: {}
titlestringoptional
Provider-specific response title.
Example: {}
sourceTypestringoptional
Provider-specific source platform type.
Example: {}
sourceToolstringoptional
Provider-specific source tool name.
Example: {}
costTimeintegeroptional
Execution time reported by the upstream provider.
Example: {}
pageintegeroptional
Current page returned by the upstream provider.
Example: {}
pageSizeintegeroptional
Page size returned by the upstream provider.
Example: {}
pageItemCountintegeroptional
Item count on the current page returned by the upstream provider.
Example: {}
totalPageintegeroptional
Total page count returned by the upstream provider.
Example: {}
dataSnapshotMonthstringoptional
Data snapshot month returned by the upstream provider.
Example: {}

Examples

Example arguments

{
  "region": "US",
  "productTitle": "Magnetic phone case with ring stand",
  "topNumber": 10,
  "productDescription": "A protective smartphone case with a magnetic ring stand and shockproof corners."
}

Example structuredContent

{
  "total": 1,
  "detectId": "example-id",
  "costToken": 1,
  "columns": [],
  "data": [
    {
      "globalUtilityId": "example-id",
      "similarity": 1,
      "applicationDate": "2026-01-01",
      "publicationDate": "2026-01-01",
      "estimatedDueDate": "2026-01-01",
      "region": "US",
      "inventors": [],
      "inventorAddresses": [],
      "applicants": [],
      "applicantAddresses": [],
      "priorityNumber": [],
      "relatedPublicationDate": [],
      "patentImageUrl": "https://example.com/image.jpg",
      "images": [],
      "classNumList": [],
      "cpcKindRaw": [],
      "troCase": false,
      "troHolder": false
    }
  ]
}