Patent & IP Risk

Patent Detailed Bibliography MCP Tool

Query patent bibliographic (catalog) information from the Zhihuiya patent database by patent ID or publication number.

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

Arguments

NameTypeRequiredMeaning
patentIdstringoptional
Patent ID (at least one of patentId and patentNumber must be provided; if both are present, patentId takes priority). Only a single value is supported; multiple values separated by commas are not allowed. Max length: 60,000 characters
Example: {}
patentNumberstringoptional
Publication/grant number (at least one of patentId and patentNumber must be provided; if both are present, patentId takes priority). Only a single value is supported; multiple values separated by commas are not allowed. Max length: 60,000 characters
Example: US11299876B2

Response fields

Treat structuredContent as the programmatic API response payload.

NameTypeRequiredMeaning
totalintegeroptional
Number of records
Example: 1
dataarrayoptional
Bibliography data list (see data fields below)
Example: []
columnsarrayoptional
Columns for rendering
Example: []
typestringoptional
Render style
Example: {}
costTokenintegeroptional
Tokens consumed
Example: 1
data[].patentIdstringoptional
Patent ID
Example: example-id
data[].pnstringoptional
Publication/grant number
Example: {}
data[].inventionTitlearrayoptional
Patent title language and name
Example: []
data[].abstractsarrayoptional
Patent abstract
Example: []
data[].patentTypestringoptional
Patent type. APPLICATION: invention application, PATENT: granted invention, UTILITY: utility model, DESIGN: design
Example: {}
data[].applicantsarrayoptional
Original applicants
Example: []
data[].assigneesarrayoptional
Current applicants (patentees)
Example: []
data[].inventorsarrayoptional
Inventors
Example: []
data[].agentsarrayoptional
Patent applicants
Example: []
data[].agencyarrayoptional
Application agency
Example: []
data[].examinersarrayoptional
Examiner information
Example: []
data[].priorityClaimsarrayoptional
Priority claims
Example: []
data[].applicationReferenceobjectoptional
Application filing reference data
Example: {}
data[].publicationReferenceobjectoptional
Publication reference data
Example: {}
data[].datesOfPublicAvailabilityobjectoptional
Public availability dates
Example: {}
data[].classificationIpcrobjectoptional
IPC classification
Example: {}
data[].classificationCpcobjectoptional
CPC classification
Example: {}
data[].classificationUpcobjectoptional
US patent classification
Example: {}
data[].classificationLocarrayoptional
LOC classification
Example: []
data[].classificationFiarrayoptional
FI classification
Example: []
data[].classificationFtermarrayoptional
F-term classification
Example: []
data[].classificationGbcobjectoptional
GBC classification
Example: {}
data[].referenceCitedPatentsarrayoptional
Cited patent documents
Example: []
data[].referenceCitedOthersarrayoptional
Cited non-patent literature
Example: []
data[].relatedDocumentsarrayoptional
Divisional/continuation application information
Example: []
data[].pctOrRegionalFilingDataobjectoptional
PCT or regional phase filing data
Example: {}
data[].pctOrRegionalPublishingDataobjectoptional
PCT or regional phase publication data
Example: {}
data[].exdtintegeroptional
Zhihuiya estimated patent expiration date
Example: 1
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

{
  "patentNumber": "US11299876B2"
}

Example structuredContent

{
  "total": 1,
  "data": [
    {
      "patentId": "example-id",
      "inventionTitle": [],
      "abstracts": [],
      "applicants": [],
      "assignees": [],
      "inventors": [],
      "agents": [],
      "agency": [],
      "examiners": [],
      "priorityClaims": [],
      "applicationReference": {},
      "publicationReference": {},
      "datesOfPublicAvailability": {},
      "classificationIpcr": {},
      "classificationCpc": {},
      "classificationUpc": {},
      "classificationLoc": [],
      "classificationFi": [],
      "classificationFterm": [],
      "classificationGbc": {},
      "referenceCitedPatents": [],
      "referenceCitedOthers": [],
      "relatedDocuments": [],
      "pctOrRegionalFilingData": {},
      "pctOrRegionalPublishingData": {},
      "exdt": 1
    }
  ],
  "columns": [],
  "costToken": 1
}