Patent & IP Risk

Patent References MCP Tool

Returns forward citation details for up to 100 patents.

MCP tool name
nexscope_patent_references
Equivalent REST API path
https://api.nexscope.ai/api/skill-api/v1/skills/patent-references/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": "patent-references-1",
  "method": "tools/call",
  "params": {
    "name": "nexscope_patent_references",
    "arguments": {
      "patentNumber": "US10123456B2"
    }
  }
}
REST API equivalent
POST https://api.nexscope.ai/api/skill-api/v1/skills/patent-references/run
Canonical detail URL
https://www.nexscope.ai/mcp-map/patent-references

Arguments

NameTypeRequiredMeaning
patentIdstringoptional
One or up to 100 comma-separated PatSnap patent IDs. Takes precedence when both identifiers are provided.
Example: patent-id
patentNumberstringoptional
One or up to 100 comma-separated publication or grant numbers.
Example: US10123456B2

Response fields

Treat structuredContent as the programmatic API response payload.

NameTypeRequiredMeaning
totalintegeroptional
Number of returned records.
Example: 1
dataarrayoptional
Patent reference records.
Example: []
data[].patentIdstringoptional
Queried patent ID.
Example: patent-id
data[].pnstringoptional
Publication number.
Example: US10123456B2
data[].citedPatentsarrayoptional
Cited patent references.
Example: []
data[].citedOthersarrayoptional
Cited non-patent literature.
Example: []
columnsarrayoptional
Provider rendering columns.
Example: []
costTokenintegeroptional
Provider-reported token cost.
Example: 6000
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: {}
typestringoptional
Provider-specific render or payload type.
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

{
  "patentNumber": "US10123456B2"
}

Example structuredContent

{
  "total": 1,
  "data": [
    {
      "patentId": "patent-id",
      "pn": "US10123456B2",
      "citedPatents": [],
      "citedOthers": []
    }
  ],
  "columns": [],
  "costToken": 6000
}