Nexscope

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://api.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 https://api.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.

NameTypeRequiredDescription
dataanyrequired
Data value used by this API operation.
codeintegerrequired
0 means accepted or successful; nonzero is a platform error.
msgstring | nullrequired
Msg value used by this API operation.
tsstringrequired
Epoch milliseconds.
timestringrequired
Server local time: yyyy-MM-dd HH:mm:ss.
coststringrequired
Elapsed milliseconds, never credits; -1 outside web requests.
traceIdstring | nullrequired
Trace id value used by this API operation.

Any of option 1

NameTypeRequiredDescription
dataobjectrequired
Data value used by this API operation.
data.costTokenintegeroptional
Token consumption
Example: 1
data.chartOptionobjectoptional
Chart config object, containing visualization data
Example: {}
data.chartOption.dataarrayoptional
Data, array of chart data point objects
Example: []
data.chartOption.fieldXstringoptional
X-axis field
Example: null
data.chartOption.fieldYarrayoptional
Y-axis fields
Example: []
data.chartOption.typestringoptional
Data type
Example: null
data.chartOption.titlestringoptional
Title
Example: null
data.trendValuesarrayoptional
Trend values, array of trending query objects (see below)
Example: []
data.trendValues[].querystringoptional
Keyword
Example: phone case
data.trendValues[].searchVolumeintegeroptional
Search volume value
Example: 1
data.trendValues[].increasePercentageintegeroptional
Percentage increase: integer, range -100 to 100, unit is %
Example: 1
data.trendValues[].startTimestringoptional
Start timestamp
Example: null
data.trendValues[].endTimestringoptional
End timestamp
Example: null
data.typestringoptional
Provider-specific render or payload type.
Example: null
data.titlestringoptional
Provider-specific response title.
Example: null
data.sourceTypestringoptional
Provider-specific source platform type.
Example: null
data.sourceToolstringoptional
Provider-specific source tool name.
Example: null
data.costTimeintegeroptional
Execution time reported by the upstream provider.
Example: null
data.pageintegeroptional
Current page returned by the upstream provider.
Example: null
data.pageSizeintegeroptional
Page size returned by the upstream provider.
Example: null
data.pageItemCountintegeroptional
Item count on the current page returned by the upstream provider.
Example: null
data.totalPageintegeroptional
Total page count returned by the upstream provider.
Example: null
data.dataSnapshotMonthstringoptional
Data snapshot month returned by the upstream provider.
Example: null

Any of option 2

NameTypeRequiredDescription
datanullrequired
Data value used by this API operation.

Examples

Example arguments

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

Example structuredContent

{
  "data": {
    "costToken": 1,
    "chartOption": {
      "data": [],
      "fieldY": []
    },
    "trendValues": [
      {
        "query": "phone case",
        "searchVolume": 1,
        "increasePercentage": 1
      }
    ]
  },
  "code": 0,
  "msg": null,
  "ts": "0",
  "time": "2026-01-01 00:00:00",
  "cost": "-1",
  "traceId": null
}