Search & Trend Intelligence

Google Trends By Time MCP Tool

Query and analyze Google Trends real-time hot topics and trending searches for a specified time range and country/region. Triggered by: Google Trends, hot topics, real-time trending, popular trends, current hot searches, recent trending, viral topics, trending searches, trend discovery, market trends, what's popular, trending now, breakout topics.

MCP tool name
nexscope_google_trends_by_time
Equivalent REST API path
https://claw-callback.nexscope.ai/api/skill-api/v1/skills/google-trends-by-time/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": "google-trends-by-time-1",
  "method": "tools/call",
  "params": {
    "name": "nexscope_google_trends_by_time",
    "arguments": {
      "region": "US",
      "days": 1
    }
  }
}
REST API equivalent
POST /api/skill-api/v1/runhttps://claw-callback.nexscope.ai/api/skill-api/v1/skills/google-trends-by-time/run
Canonical detail URL
https://www.nexscope.ai/mcp-map/google-trends-by-time

Arguments

NameTypeRequiredMeaning
daysintegeroptional
Time range, query trend data for the last N days, default 7. Common values: 1, 2, 7
Example: 1
regionstringoptional
Country/region code, default US. Options: US, GB, JP, CA, MX, DE, FR, IT, ES, NL, AU, SG, AE, BR, IN, TR, PL, SE
Example: US

Response fields

Treat structuredContent as the programmatic API response payload.

NameTypeRequiredMeaning
costTokenintegeroptional
Token consumption
Example: 1
chartOptionobjectoptional
Chart config object, containing visualization data
Example: {}
chartOption.dataarrayoptional
Data, array of chart data point objects
Example: []
chartOption.fieldXstringoptional
X-axis field
Example: {}
chartOption.fieldYarrayoptional
Y-axis fields
Example: []
chartOption.typestringoptional
Data type
Example: {}
chartOption.titlestringoptional
Title
Example: {}
trendValuesarrayoptional
Trend values, array of trending query objects (see below)
Example: []
trendValues[].querystringoptional
Keyword
Example: phone case
trendValues[].searchVolumeintegeroptional
Search volume value
Example: 1
trendValues[].increasePercentageintegeroptional
Percentage increase: integer, range -100 to 100, unit is %
Example: 1
trendValues[].startTimestringoptional
Start timestamp
Example: {}
trendValues[].endTimestringoptional
End timestamp
Example: {}
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

{
  "region": "US",
  "days": 1
}

Example structuredContent

{
  "costToken": 1,
  "chartOption": {
    "data": [],
    "fieldY": []
  },
  "trendValues": [
    {
      "query": "phone case",
      "searchVolume": 1,
      "increasePercentage": 1
    }
  ]
}