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_detectorEquivalent REST API path
https://claw-callback.nexscope.ai/api/skill-api/v1/skills/utility-patent-detector/runJSON-RPC method
tools/callAuthentication
Send the user API key as a bearer token on every MCP JSON-RPC request.
Authorization: Bearer nk_xxxxxxxxxxxxxxxxxIf 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/runCanonical detail URL
https://www.nexscope.ai/mcp-map/utility-patent-detectorArguments
| Name | Type | Required | Meaning |
|---|---|---|---|
productTitle | string | required | Product title, max 1000 characters Example: Magnetic phone case with ring stand |
productDescription | string | required | Product description, max 1000 characters Example: A protective smartphone case with a magnetic ring stand and shockproof corners. |
region | string | required | Country/region code(s) where the product is intended for sale, multiple separated by commas. Currently supports US. Default US Example: US |
topNumber | integer | required | Number of results to recall, range: 10--200, default 100 Example: 10 |
Response fields
Treat structuredContent as the programmatic API response payload.
| Name | Type | Required | Meaning |
|---|---|---|---|
total | integer | optional | Record count Example: 1 |
detectId | string | optional | Detection ID Example: example-id |
costToken | integer | optional | Token cost Example: 1 |
type | string | optional | Render style Example: {} |
columns | array | optional | Render column definitions Example: [] |
data | array | optional | Patent list (see below) Example: [] |
data[].globalUtilityId | string | optional | Patent ID Example: example-id |
data[].title | string | optional | Utility patent title Example: {} |
data[].titleCn | string | optional | Utility patent title (Chinese) Example: {} |
data[].similarity | number | optional | Similarity between the product and this patent (0--1) Example: 1 |
data[].patentValidity | string | optional | Patent validity: Active or Invalid Example: {} |
data[].applicationNumber | string | optional | Application number Example: {} |
data[].applicationDate | string | optional | Application date (yyyy-MM-dd) Example: 2026-01-01 |
data[].publicationNumber | string | optional | Publication number Example: {} |
data[].publicationDate | string | optional | Publication date (yyyy-MM-dd) Example: 2026-01-01 |
data[].estimatedDueDate | string | optional | Estimated expiration date (yyyy-MM-dd) Example: 2026-01-01 |
data[].region | string | optional | Receiving office Example: US |
data[].patentAbstract | string | optional | Abstract Example: {} |
data[].patentAbstractCn | string | optional | Abstract (Chinese) Example: {} |
data[].claims | string | optional | Claims Example: {} |
data[].claimsCn | string | optional | Claims (Chinese) Example: {} |
data[].specification | string | optional | Specification Example: {} |
data[].specificationCn | string | optional | Specification (Chinese) Example: {} |
data[].inventors | array | optional | Inventors and countries concatenated, array format Example: [] |
data[].inventorAddresses | array | optional | Inventor addresses, array format Example: [] |
data[].applicants | array | optional | Applicants and countries concatenated, array format Example: [] |
data[].applicantAddresses | array | optional | Rights holder addresses, array format Example: [] |
data[].priorityNumber | array | optional | Priority numbers, array format Example: [] |
data[].relatedPublicationDate | array | optional | First publication dates (yyyy-MM-dd), array format Example: [] |
data[].patentImageUrl | string | optional | Patent cover image Example: https://example.com/image.jpg |
data[].images | array | optional | Patent drawings Example: [] |
data[].classNumList | array | optional | Classification number path list, format: classNum1 > classNum2 > classNum3 Example: [] |
data[].cpcKindRaw | array | optional | CPC classification (raw JSONArray) Example: [] |
data[].troCase | boolean | optional | Whether there is a TRO enforcement history Example: false |
data[].troHolder | boolean | optional | Whether it is a patent of a TRO rights holder Example: false |
errcode | integer | optional | Upstream status code returned by the provider. Example: {} |
errmsg | string | optional | Upstream status message returned by the provider. Example: {} |
code | string | optional | Provider-specific status code. Example: {} |
msg | string | optional | Provider-specific status message. Example: {} |
message | string | optional | Provider-specific message. Example: {} |
title | string | optional | Provider-specific response title. Example: {} |
sourceType | string | optional | Provider-specific source platform type. Example: {} |
sourceTool | string | optional | Provider-specific source tool name. Example: {} |
costTime | integer | optional | Execution time reported by the upstream provider. Example: {} |
page | integer | optional | Current page returned by the upstream provider. Example: {} |
pageSize | integer | optional | Page size returned by the upstream provider. Example: {} |
pageItemCount | integer | optional | Item count on the current page returned by the upstream provider. Example: {} |
totalPage | integer | optional | Total page count returned by the upstream provider. Example: {} |
dataSnapshotMonth | string | optional | 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
}
]
}