Patent & IP Risk
Google Patent Search MCP Tool
Returns normalized public ecommerce research data with a fixed read-only provider path.
MCP tool name
nexscope_google_patent_searchEquivalent REST API path
https://api.nexscope.ai/api/skill-api/v1/skills/google-patent-search/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": "google-patent-search-1",
"method": "tools/call",
"params": {
"name": "nexscope_google_patent_search",
"arguments": {
"q": "wireless earbuds",
"num": 10,
"page": 1
}
}
}REST API equivalent
POST https://api.nexscope.ai/api/skill-api/v1/skills/google-patent-search/runCanonical detail URL
https://www.nexscope.ai/mcp-map/google-patent-searchArguments
| Name | Type | Required | Meaning |
|---|---|---|---|
q | string | required | Patent search query, maximum 1000 characters Example: wireless earbuds |
num | integer | optional | Results per page, from 10 to 100 Example: 10 |
page | integer | optional | Page number, starting at 1 Example: 1 |
country | string | optional | Country filter Example: {} |
language | string | optional | Language filter Example: {} |
before | string | optional | Upper date boundary such as filing:20260101 Example: {} |
after | string | optional | Lower date boundary such as filing:20200101 Example: {} |
sort | string | optional | Sort order: new or old Example: {} |
type | string | optional | Document type: PATENT or DESIGN Example: {} |
status | string | optional | Document status: GRANT or APPLICATION Example: {} |
patents | boolean | optional | Include patent results Example: true |
scholar | boolean | optional | Include scholar results Example: false |
litigation | string | optional | Litigation filter: YES or NO Example: {} |
inventor | string | optional | Inventor filter Example: {} |
assignee | string | optional | Assignee filter Example: {} |
clustered | boolean | optional | Enable clustered results; only true is supported Example: true |
dups | string | optional | Duplicate grouping mode; only language is supported Example: language |
Response fields
Treat structuredContent as the programmatic API response payload.
No response field schema is defined for this tool.
Examples
Example arguments
{
"q": "wireless earbuds",
"num": 10,
"page": 1
}Example structuredContent
{
"results": [],
"summary": {
"cpc": [
{
"percentage": 100,
"key": "Total"
}
]
}
}