Patent & IP Risk
Text Trademark Detector MCP Tool
Text trademark detection and infringement risk analysis for e-commerce product listings.
MCP tool name
nexscope_text_trademark_detectorEquivalent REST API path
https://claw-callback.nexscope.ai/api/skill-api/v1/skills/text-trademark-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": "text-trademark-detector-1",
"method": "tools/call",
"params": {
"name": "nexscope_text_trademark_detector",
"arguments": {
"productText": "Protective magnetic phone case with shockproof corners.",
"limit": 10,
"productTitle": "MagSafe Phone Case for iPhone",
"regions": "US"
}
}
}REST API equivalent
POST /api/skill-api/v1/runhttps://claw-callback.nexscope.ai/api/skill-api/v1/skills/text-trademark-detector/runCanonical detail URL
https://www.nexscope.ai/mcp-map/text-trademark-detectorArguments
| Name | Type | Required | Meaning |
|---|---|---|---|
productTitle | string | required | Product title, used for trademark detection (max 1000 characters) Example: MagSafe Phone Case for iPhone |
regions | string | optional | Country/region codes, multiple separated by commas. Supported values: US, EM, GB, DE, FR, IT, ES, AU, CA, MX, JP, CN, WO, TR, BX Example: US |
limit | integer | required | Limit on the number of returned results (default 100, max 500) Example: 10 |
productText | string | optional | Other product text information, such as bullet points or product description (max 1000 characters) Example: Protective magnetic phone case with shockproof corners. |
Response fields
Treat structuredContent as the programmatic API response payload.
| Name | Type | Required | Meaning |
|---|---|---|---|
total | integer | optional | Number of matched trademark records Example: 1 |
data | array | optional | Trademark list (flattened), each element contains the following fields Example: [] |
detectId | string | optional | API call ID Example: example-id |
columns | array | optional | Rendered column definitions Example: [] |
blacklistTrademarks | array | optional | Blacklisted trademarks detected in the text Example: [] |
whitelistTrademarks | array | optional | Whitelisted (safe) trademarks detected in the text Example: [] |
data[].textTrademarkRadar | string | optional | Product risk level: "0" = low risk, "1" = pending manual review, "2" = high risk Example: {} |
costToken | integer | optional | Token cost Example: 1 |
type | string | optional | Render style Example: {} |
data[].trademarkName | string | optional | Trademark word Example: {} |
data[].region | string | optional | Country/region code Example: US |
data[].score | integer | optional | Risk score Example: 1 |
data[].highestModeScore | integer | optional | Highest risk score (range 0-5) Example: 1 |
data[].trademarksStatus | string | optional | Status of the highest-score trademark word Example: {} |
data[].regionStatus | string | optional | Trademark status in the matched region Example: {} |
data[].holder | string | optional | Rights holder Example: {} |
data[].applicationNumber | string | optional | Application number Example: {} |
data[].registrationNumber | string | optional | Registration number Example: {} |
data[].isFamous | boolean | optional | Whether it is a famous trademark Example: false |
data[].isAmazonBrand | boolean | optional | Whether it is an Amazon hot search brand Example: false |
data[].isActiveHolder | boolean | optional | Whether the holder is an active enforcer Example: false |
data[].isCompatibility | boolean | optional | Whether it is compatibility Example: false |
data[].isCommonSense | boolean | optional | Whether it is a common word Example: false |
data[].niceClass | array | optional | Nice classification Example: [] |
data[].originalTextMatches | array | optional | Original matched trigger words Example: [] |
blacklisttrademarks[].trademark | string | optional | Trademark name Example: {} |
blacklisttrademarks[].region | string | optional | Country/region code Example: US |
blacklisttrademarks[].note | string | optional | Remarks Example: {} |
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
{
"productText": "Protective magnetic phone case with shockproof corners.",
"limit": 10,
"productTitle": "MagSafe Phone Case for iPhone",
"regions": "US"
}Example structuredContent
{
"total": 1,
"data": [
{
"region": "US",
"score": 1,
"highestModeScore": 1,
"isFamous": false,
"isAmazonBrand": false,
"isActiveHolder": false,
"isCompatibility": false,
"isCommonSense": false,
"niceClass": [],
"originalTextMatches": []
}
],
"detectId": "example-id",
"columns": [],
"blacklistTrademarks": [],
"whitelistTrademarks": [],
"costToken": 1,
"blacklisttrademarks": [
{
"region": "US"
}
]
}