TrendFlow
Server Details
Google Trends data: interest over time, by region, related queries, and trending now.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- dariomory/trendflow-js
- GitHub Stars
- 2
- Server Listing
- trendflow
Available Tools
8 toolsget_interest_by_regionInterest by regionARead-onlyInspect
Break down search interest for one term by geography. Use this when the user asks where something is popular, or wants a regional or city-level comparison. Values are normalized relative interest (0-100 within the result set).
| Name | Required | Description | Default |
|---|---|---|---|
| region | No | Country code such as "US", "GB", "TH"; a sub-region such as "US-CA"; or a US metro code such as "807". Empty string means worldwide. | |
| keyword | Yes | A search term, or a topic id from search_topics (e.g. "/m/0mkz"). | |
| category | No | Google Trends category id to restrict the query to; 0, the default, is every category. Narrowing disambiguates a word with several meanings without needing a topic id. | |
| timeframe | No | Time range. A preset, or a custom range as two ISO dates: "2023-01-01 2023-06-30". The range also sets granularity — hourly ranges return minute-level points and "all" returns monthly ones, so a long range cannot show a short spike. | |
| resolution | No | Geographic granularity of the breakdown. | |
| searchProperty | No | Which Google surface to measure: empty for web search, or images, news, youtube, or froogle (Shopping). These are separate indexes, so values from different properties are not comparable to each other. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint: true and openWorldHint: true, so safety is covered. The description adds valuable behavioral context beyond annotations: 'Values are normalized relative interest (0-100 within the result set).' This helps interpret results and clarifies scope ('for one term'). No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is three sentences, each earning its place: action, usage trigger, and value normalization. It is front-loaded with the primary purpose and contains no redundant or filler words. Ideal conciseness for a tool with a rich schema.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has 6 parameters, no output schema, and a read-only nature, the description covers the key usage context and result interpretation (normalized 0-100). It could mention the exact return shape (e.g., list of regions with values), but the name and schema provide enough for an agent to infer the output. The description is complete enough for a well-specified tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema provides 100% coverage with descriptions for all 6 parameters, including enums for resolution and searchProperty, and detailed descriptions for region and timeframe. The tool description does not add further parameter-level semantics; it only states scope and normalization. With high schema coverage, baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description starts with a specific verb+resource: 'Break down search interest for one term by geography.' It clearly differentiates from siblings like get_interest_over_time (which focuses on time) and get_related_queries (which focuses on related terms). The phrase 'where something is popular' further reinforces the geography-specific purpose.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit usage context: 'Use this when the user asks where something is popular, or wants a regional or city-level comparison.' While it does not list exclusions or alternative tools by name, the guidance is clear enough to distinguish from siblings. The absence of named alternatives prevents a 5, but the context is sufficient for selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_interest_over_timeInterest over timeARead-onlyInspect
Get relative search interest for one or more terms over a historical period. Use this when the user asks how popular something is, whether it is rising or falling, or how several things compare — passing multiple keywords compares them on one scale. Values are normalized relative interest (0-100 within the result set), not absolute search volume.
| Name | Required | Description | Default |
|---|---|---|---|
| region | No | Country code such as "US", "GB", "TH"; a sub-region such as "US-CA"; or a US metro code such as "807". Empty string means worldwide. | |
| category | No | Google Trends category id to restrict the query to; 0, the default, is every category. Narrowing disambiguates a word with several meanings without needing a topic id. | |
| keywords | Yes | 1-5 search terms. Pass several to compare them against each other. Accepts topic ids from search_topics (e.g. "/m/0mkz") as well as literal phrases. | |
| timeframe | No | Time range. A preset, or a custom range as two ISO dates: "2023-01-01 2023-06-30". The range also sets granularity — hourly ranges return minute-level points and "all" returns monthly ones, so a long range cannot show a short spike. | |
| searchProperty | No | Which Google surface to measure: empty for web search, or images, news, youtube, or froogle (Shopping). These are separate indexes, so values from different properties are not comparable to each other. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With readOnlyHint=true and openWorldHint=true already declared, the description adds valuable context: values are normalized relative interest (0-100 within the result set), not absolute search volume. This goes beyond annotations and helps the agent interpret results correctly, though it does not cover return format or rate limits.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences, front-loaded with the core action, and every sentence adds value—what it does, when to use it, and how to interpret results. No filler or repetition of schema details.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (5 parameters, no output schema), the description adequately covers the essential semantics: temporal scope, comparison behavior, and normalization. It could mention the return format (e.g., time series of points), but the normalization and comparison details largely compensate for the lack of an output schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3. The description enhances parameter understanding by explaining that multiple keywords are compared on one scale and that results are relative, not absolute. This adds interpretive meaning that the schema's field descriptions do not fully convey.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Get') and resource ('relative search interest over a historical period'), clearly distinguishing it from siblings like get_interest_by_region (geographic) and get_related_queries (related terms). It also clarifies the comparative aspect ('passing multiple keywords compares them on one scale'), which sets expectations precisely.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicit when-to-use guidance is provided ('Use this when the user asks how popular something is, whether it is rising or falling, or how several things compare'). It does not mention when not to use it or name alternative tools, but the context is clear enough for an agent to select this tool appropriately.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_trending_nowTrending nowARead-onlyInspect
Lists the searches surging right now in a country, for questions about what is spiking without a term being named, and for news and real-time context.
The backend parameter selects the source: "rpc" returns around 50 entries with growth percentages and a relative volume index; "rss" returns 10 entries together with the news articles behind each one; "auto" tries rpc and falls back to rss.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of results to return. | |
| region | No | Country code such as "US", "GB", "TH"; a sub-region such as "US-CA"; or a US metro code such as "807". Empty string means worldwide. | |
| backend | No | Source to use. "rpc" returns ~50 items with growth percentages; "rss" returns 10 with the news articles behind each trend; "auto" tries rpc then falls back to rss. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint and openWorldHint, and the description adds substantial behavioral detail: the backend parameter behavior with exact entry counts, output contents (growth percentages, relative volume index, news articles), and the fallback logic for 'auto'. This goes well beyond the structured annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the core purpose and followed by a concise technical detail about the backend parameter. No unnecessary words; every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers the core purpose, usage context, and backend variations, which is adequate for a simple list tool with no output schema. Minor gaps remain: it does not explain how 'limit' interacts with the fixed counts of rpc/rss, nor detail the exact output structure, but these are not critical for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, covering all three parameters. The description adds meaningful semantics for the 'backend' parameter by explaining the output differences between rpc, rss, and auto, which is not fully captured in the schema. The descriptions for limit and region are sufficient in the schema, so no additional compensation is needed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific action ('Lists the searches surging right now in a country') and scope, and explicitly distinguishes from term-based tools by noting it works 'without a term being named' and targets 'news and real-time context'. This clearly separates it from sibling tools like get_interest_over_time or get_related_queries.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit when-to-use guidance: 'for questions about what is spiking without a term being named, and for news and real-time context.' It implies when not to use (when a specific term is already known) but does not name alternative tools or provide exclusions, so it falls just short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_regionsList regionsARead-onlyInspect
Returns the geo codes Google Trends accepts. With no argument it lists every country; given a country code it lists that country's sub-regions — US states, German states, UK nations — each as a code and a name.
Any code returned here can be passed as the region argument of the other tools.
| Name | Required | Description | Default |
|---|---|---|---|
| country | No | Country code such as "US", "GB", "TH"; a sub-region such as "US-CA"; or a US metro code such as "807". Empty string means worldwide. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and openWorldHint=true. The description adds behavioral context: with no argument it lists all countries; with a country code it lists sub-regions, returning code-and-name pairs. It also clarifies that these codes are acceptable inputs elsewhere, which goes beyond the annotation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is exactly two sentences, front-loaded with the core purpose, and every clause adds value. No filler or repetition of schema content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read-only reference tool with one optional parameter and no output schema, the description fully explains the input/output behavior (list of code/name pairs) and its integration with sibling tools. No critical information is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with a detailed description for the `country` parameter. The description adds semantic meaning by explaining the effect of omitting the argument (list all countries) versus supplying a country code (list sub-regions). This complements the schema's format-level details.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb and resource: 'Returns the geo codes Google Trends accepts.' It clearly distinguishes itself from trend-analysis siblings by explaining it provides region codes, not trend data. The behavior with and without an argument is also described.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives practical usage context: 'Any code returned here can be passed as the `region` argument of the other tools.' This tells the agent when to use this tool (to obtain valid region codes for sibling tools), but it does not explicitly state exclusions or alternatives beyond that implicit guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
research_bulkResearch many trendsARead-onlyInspect
Researches up to 10 topics in a single call, each with the same full picture as research_trend: interest over time, where it is most searched, and related queries. Each topic is looked up on its own scale, so they are not comparable to one another.
Use this when you need data across many topics — a long or rich research pass — instead of one tool call per topic. Each section is fetched independently, so a partial result is normal: any section that fails carries an error instead of data and the rest still returns.
| Name | Required | Description | Default |
|---|---|---|---|
| region | No | Country code such as "US", "GB", "TH"; a sub-region such as "US-CA"; or a US metro code such as "807". Empty string means worldwide. | |
| topics | Yes | 1-10 topics (terms or topic ids) to research. Each is looked up on its own scale, so they are not comparable to one another. Use this to gather data across many topics in one call instead of one tool call per topic. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint and openWorldHint. Description adds important behavioral details: each topic is looked up on its own scale (non-comparable), independent fetching per section, and normal partial failures. Does not contradict annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two short paragraphs: first explains capability and structure, second gives usage guidance. No wasted words. Front-loaded with the most critical info (max 10 topics, same full picture).
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has only 2 parameters (both well-documented in schema) and no output schema, the description sufficiently covers behavior, usage context, error handling, and comparability caveat. A partial result note substitutes for return format details.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3. Description reinforces parameter semantics: 'topics' must be 1-10 items, each looked up independently and not comparable across topics. Adds clarity that topics can be terms or topic IDs, which is not in the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states the tool researches up to 10 topics per call, giving the same full picture as research_trend (interest over time, regional distribution, related queries). It clearly distinguishes this bulk version from the single-topic sibling by specifying batch size and mention of 'full picture' equivalence.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly advises when to use: 'when you need data across many topics — a long or rich research pass — instead of one tool call per topic.' Also explains partial results are normal, setting expectations for error handling.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
research_trendResearch a trendARead-onlyInspect
Returns a full picture of one term in a single call: interest over time, where it is most searched, and the queries people search alongside it. Suited to open-ended research on a topic rather than one narrow question.
Each section is fetched independently, so a partial result is normal: any section that fails carries an error instead of data and the rest still returns.
| Name | Required | Description | Default |
|---|---|---|---|
| region | No | Country code such as "US", "GB", "TH"; a sub-region such as "US-CA"; or a US metro code such as "807". Empty string means worldwide. | |
| keyword | Yes | A search term, or a topic id from search_topics (e.g. "/m/0mkz"). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnlyHint and openWorldHint, but the description adds valuable behavioral context: sections are fetched independently, so partial results are normal and failures carry an 'error' field. This goes beyond the annotations and helps the agent understand that missing sections are expected, not a tool malfunction.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and front-loaded: the first sentence states the main capability, the second adds usage context, and the final note explains error semantics. Every sentence earns its place, with no redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given there is no output schema, the description provides a solid overview of the returned data sections and error behavior. However, it does not describe the exact structure or format of each section's data (e.g., time series format, region names). For a complex tool with multiple sections, a bit more detail on the response shape would be ideal, but the current description is adequate for selection and initial invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already covers both parameters with descriptions (keyword, region), and schema coverage is 100%. The description adds no further parameter-level detail, but it doesn't need to—the schema is self-sufficient. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Returns') and resource ('full picture of one term'), listing the exact sections: interest over time, where most searched, and related queries. It clearly distinguishes itself from the more granular siblings (get_interest_over_time, etc.) by framing itself as a comprehensive single-call research tool rather than a narrow query.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description states it is 'Suited to open-ended research on a topic rather than one narrow question,' providing clear contextual guidance. It does not explicitly name alternative tools for narrow questions, but the sibling list and the 'rather than' phrasing imply when to use this versus the individual getters. The partial-result note also sets expectations for use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_topicsSearch topicsARead-onlyInspect
Resolves a name — a company, product, person, technology, or concept — to its Google Trends topic id (mid), with a type field that distinguishes same-name entities such as Nike the company from Nike the goddess.
A topic aggregates every spelling and translation of one concept, so it measures considerably more search activity than a literal phrase: the topic for "artificial intelligence" scores 62 where the literal string scores 1. The other TrendFlow tools accept a topic id anywhere they accept a keyword.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | A search term, or a topic id from search_topics (e.g. "/m/0mkz"). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the readOnlyHint/openWorldHint annotations, the description explains that a topic aggregates spellings and translations, and quantifies the difference (AI topic scores 62 vs literal string's 1). This provides significant behavioral context for search volume semantics.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences total. The first sentence states purpose and output, the second provides an illustrative example and integration context. Every sentence earns its place; there is no redundant or filler text.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With one parameter and no output schema, the description fully explains what the tool returns (mid and type), why it matters (aggregated volume), and how it fits into the tool ecosystem. It is complete for a simple lookup tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already covers the single parameter (query can be a search term or an existing topic id) with 100% coverage. The description adds examples of entity types (company, product, person, etc.) but does not materially change understanding of the parameter's meaning or format beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('resolves') and names the resource ('Google Trends topic id') and output ('mid'), with an added 'type' field. It clearly distinguishes itself from sibling tools by focusing on entity resolution rather than trend measurement.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description states that 'other TrendFlow tools accept a topic id anywhere they accept a keyword', implying this tool should be used to obtain topic ids for those tools. It gives a useful disambiguation example (Nike company vs goddess) but does not explicitly enumerate when not to use it or name alternative tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
1 tool update
- Added
research_bulk
1 tool update
- Added
list_regions
5 tool updates
- Changed
get_interest_by_region5 fields changed- added
Input schema / properties / categoryAdded value: +{ + "description": "Google Trends category id to restrict the query to; 0, the default, is every category. Narrowing disambiguates a word with several meanings without needing a topic id.", + "maximum": 9007199254740991, + "minimum": 0, + "type": "integer" +} - changed
Input schema / properties / region / anyOfPrevious value: -[ - { - "enum": [ - "", - "US", - "GB", - "DE", - "FR", - "IT", - "ES", - "CA", - "AU", - "JP", - "IN", - "BR", - "MX", - "NL", - "SE", - "PL", - "TR" - ], - "type": "string" - }, - { - "pattern": "^[A-Z]{2}$", - "type": "string" - } -]New value: +[ + { + "enum": [ + "", + "US", + "GB", + "DE", + "FR", + "IT", + "ES", + "CA", + "AU", + "JP", + "IN", + "BR", + "MX", + "NL", + "SE", + "PL", + "TR" + ], + "type": "string" + }, + { + "pattern": "^[A-Z]{2}(-[A-Z0-9]{1,3})?$", + "type": "string" + }, + { + "pattern": "^\\d{3}$", + "type": "string" + } +] - changed
Input schema / properties / region / descriptionPrevious value: -"Country code such as \"US\", \"GB\", \"TH\". Empty string means worldwide."New value: +"Country code such as \"US\", \"GB\", \"TH\"; a sub-region such as \"US-CA\"; or a US metro code such as \"807\". Empty string means worldwide." - added
Input schema / properties / searchPropertyAdded value: +{ + "description": "Which Google surface to measure: empty for web search, or images, news, youtube, or froogle (Shopping). These are separate indexes, so values from different properties are not comparable to each other.", + "enum": [ + "", + "images", + "news", + "youtube", + "froogle" + ], + "type": "string" +} - added
Input schema / properties / timeframeAdded value: +{ + "anyOf": [ + { + "enum": [ + "now 1-H", + "now 4-H", + "now 1-d", + "now 7-d", + "today 1-m", + "today 3-m", + "today 12-m", + "today 5-y", + "all" + ], + "type": "string" + }, + { + "pattern": "^\\d{4}-\\d{2}-\\d{2} \\d{4}-\\d{2}-\\d{2}$", + "type": "string" + } + ], + "description": "Time range. A preset, or a custom range as two ISO dates: \"2023-01-01 2023-06-30\". The range also sets granularity — hourly ranges return minute-level points and \"all\" returns monthly ones, so a long range cannot show a short spike." +}
- Changed
get_interest_over_time8 fields changed- added
Input schema / properties / categoryAdded value: +{ + "description": "Google Trends category id to restrict the query to; 0, the default, is every category. Narrowing disambiguates a word with several meanings without needing a topic id.", + "maximum": 9007199254740991, + "minimum": 0, + "type": "integer" +} - changed
Input schema / properties / region / anyOfPrevious value: -[ - { - "enum": [ - "", - "US", - "GB", - "DE", - "FR", - "IT", - "ES", - "CA", - "AU", - "JP", - "IN", - "BR", - "MX", - "NL", - "SE", - "PL", - "TR" - ], - "type": "string" - }, - { - "pattern": "^[A-Z]{2}$", - "type": "string" - } -]New value: +[ + { + "enum": [ + "", + "US", + "GB", + "DE", + "FR", + "IT", + "ES", + "CA", + "AU", + "JP", + "IN", + "BR", + "MX", + "NL", + "SE", + "PL", + "TR" + ], + "type": "string" + }, + { + "pattern": "^[A-Z]{2}(-[A-Z0-9]{1,3})?$", + "type": "string" + }, + { + "pattern": "^\\d{3}$", + "type": "string" + } +] - changed
Input schema / properties / region / descriptionPrevious value: -"Country code such as \"US\", \"GB\", \"TH\". Empty string means worldwide."New value: +"Country code such as \"US\", \"GB\", \"TH\"; a sub-region such as \"US-CA\"; or a US metro code such as \"807\". Empty string means worldwide." - added
Input schema / properties / searchPropertyAdded value: +{ + "description": "Which Google surface to measure: empty for web search, or images, news, youtube, or froogle (Shopping). These are separate indexes, so values from different properties are not comparable to each other.", + "enum": [ + "", + "images", + "news", + "youtube", + "froogle" + ], + "type": "string" +} - added
Input schema / properties / timeframe / anyOfAdded value: +[ + { + "enum": [ + "now 1-H", + "now 4-H", + "now 1-d", + "now 7-d", + "today 1-m", + "today 3-m", + "today 12-m", + "today 5-y", + "all" + ], + "type": "string" + }, + { + "pattern": "^\\d{4}-\\d{2}-\\d{2} \\d{4}-\\d{2}-\\d{2}$", + "type": "string" + } +] - changed
Input schema / properties / timeframe / descriptionPrevious value: -"Time range for the series."New value: +"Time range. A preset, or a custom range as two ISO dates: \"2023-01-01 2023-06-30\". The range also sets granularity — hourly ranges return minute-level points and \"all\" returns monthly ones, so a long range cannot show a short spike." - removed
Input schema / properties / timeframe / enumRemoved value: -[ - "now 1-d", - "now 7-d", - "today 12-m", - "today 5-y" -] - removed
Input schema / properties / timeframe / typeRemoved value: -"string"
- Changed
get_related_queries4 fields changed- added
Input schema / properties / categoryAdded value: +{ + "description": "Google Trends category id to restrict the query to; 0, the default, is every category. Narrowing disambiguates a word with several meanings without needing a topic id.", + "maximum": 9007199254740991, + "minimum": 0, + "type": "integer" +} - added
Input schema / properties / regionAdded value: +{ + "anyOf": [ + { + "enum": [ + "", + "US", + "GB", + "DE", + "FR", + "IT", + "ES", + "CA", + "AU", + "JP", + "IN", + "BR", + "MX", + "NL", + "SE", + "PL", + "TR" + ], + "type": "string" + }, + { + "pattern": "^[A-Z]{2}(-[A-Z0-9]{1,3})?$", + "type": "string" + }, + { + "pattern": "^\\d{3}$", + "type": "string" + } + ], + "description": "Country code such as \"US\", \"GB\", \"TH\"; a sub-region such as \"US-CA\"; or a US metro code such as \"807\". Empty string means worldwide." +} - added
Input schema / properties / searchPropertyAdded value: +{ + "description": "Which Google surface to measure: empty for web search, or images, news, youtube, or froogle (Shopping). These are separate indexes, so values from different properties are not comparable to each other.", + "enum": [ + "", + "images", + "news", + "youtube", + "froogle" + ], + "type": "string" +} - added
Input schema / properties / timeframeAdded value: +{ + "anyOf": [ + { + "enum": [ + "now 1-H", + "now 4-H", + "now 1-d", + "now 7-d", + "today 1-m", + "today 3-m", + "today 12-m", + "today 5-y", + "all" + ], + "type": "string" + }, + { + "pattern": "^\\d{4}-\\d{2}-\\d{2} \\d{4}-\\d{2}-\\d{2}$", + "type": "string" + } + ], + "description": "Time range. A preset, or a custom range as two ISO dates: \"2023-01-01 2023-06-30\". The range also sets granularity — hourly ranges return minute-level points and \"all\" returns monthly ones, so a long range cannot show a short spike." +}
- Changed
get_trending_now2 fields changed- changed
Input schema / properties / region / anyOfPrevious value: -[ - { - "enum": [ - "", - "US", - "GB", - "DE", - "FR", - "IT", - "ES", - "CA", - "AU", - "JP", - "IN", - "BR", - "MX", - "NL", - "SE", - "PL", - "TR" - ], - "type": "string" - }, - { - "pattern": "^[A-Z]{2}$", - "type": "string" - } -]New value: +[ + { + "enum": [ + "", + "US", + "GB", + "DE", + "FR", + "IT", + "ES", + "CA", + "AU", + "JP", + "IN", + "BR", + "MX", + "NL", + "SE", + "PL", + "TR" + ], + "type": "string" + }, + { + "pattern": "^[A-Z]{2}(-[A-Z0-9]{1,3})?$", + "type": "string" + }, + { + "pattern": "^\\d{3}$", + "type": "string" + } +] - changed
Input schema / properties / region / descriptionPrevious value: -"Country code such as \"US\", \"GB\", \"TH\". Empty string means worldwide."New value: +"Country code such as \"US\", \"GB\", \"TH\"; a sub-region such as \"US-CA\"; or a US metro code such as \"807\". Empty string means worldwide."
- Changed
research_trend2 fields changed- changed
Input schema / properties / region / anyOfPrevious value: -[ - { - "enum": [ - "", - "US", - "GB", - "DE", - "FR", - "IT", - "ES", - "CA", - "AU", - "JP", - "IN", - "BR", - "MX", - "NL", - "SE", - "PL", - "TR" - ], - "type": "string" - }, - { - "pattern": "^[A-Z]{2}$", - "type": "string" - } -]New value: +[ + { + "enum": [ + "", + "US", + "GB", + "DE", + "FR", + "IT", + "ES", + "CA", + "AU", + "JP", + "IN", + "BR", + "MX", + "NL", + "SE", + "PL", + "TR" + ], + "type": "string" + }, + { + "pattern": "^[A-Z]{2}(-[A-Z0-9]{1,3})?$", + "type": "string" + }, + { + "pattern": "^\\d{3}$", + "type": "string" + } +] - changed
Input schema / properties / region / descriptionPrevious value: -"Country code such as \"US\", \"GB\", \"TH\". Empty string means worldwide."New value: +"Country code such as \"US\", \"GB\", \"TH\"; a sub-region such as \"US-CA\"; or a US metro code such as \"807\". Empty string means worldwide."
6 tool updates
- First observed
get_interest_by_region - First observed
get_interest_over_time - First observed
get_related_queries - First observed
get_trending_now - First observed
research_trend - First observed
search_topics
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Google Trends interest over time, by region, and related queries and topics, as JSON.
Google Trends search interest over time with growth metrics. Free key at trendsapi.ai
Google Trends: Search, Images, News, Shopping over time, growth metrics. Free key at trendsmcp.ai
Google Trends trending searches, volume estimates & trend duration. Not affiliated with Google LLC.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceEnables AI assistants to query Google Trends data, including search interest over time, regional breakdowns, trending searches, and keyword ideas.MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to access Google Trends data for comparing keywords, discovering trending searches, and analyzing regional interest through natural language.2MIT
- FlicenseNot gradedqualityDmaintenanceEnables retrieval and analysis of Google Trends data for any search term over the last 12 months. Provides structured timeline data with relative interest scores that can be filtered by geography and category.-
- AlicenseBqualityDmaintenanceEnables Claude to query Google Trends data such as keyword interest, related queries, and regional popularity, with robust proxy rotation to bypass Google's anti-bot measures.5531MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool targets a distinct Google Trends data type—regional, temporal, related queries, trending now, topic resolution—so agents can usually tell them apart. However, research_trend overlaps with three of the get_* tools by combining their outputs, so it could be selected instead of a specific tool if the agent wants just one slice. Search topics is clearly separate.
Four tools consistently use the get_verb_noun pattern (get_interest_over_time, etc.), but research_trend and search_topics deviate with different verbs while still keeping snake_case verb_noun. The pattern is readable but not perfectly uniform.
Six tools is an appropriate number for a Google Trends server, covering the main interest endpoints plus a convenience aggregator and a topic resolver. Not too many, not too few.
The server covers the core Google Trends features: time series, regional breakdown, related queries, trending now, and topic resolution. A notable gap is the absence of a related_topics endpoint (topics related to a keyword), which complements related queries. Overall, the surface is fairly complete for typical trend research tasks.