get_timeseries
Daily traffic series for a site (visits, visitors, pageviews, clicks, bots per day, in the site's timezone).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| to | No | ||
| days | No | ||
| from | No | ||
| site | Yes |
Daily traffic series for a site (visits, visitors, pageviews, clicks, bots per day, in the site's timezone).
| Name | Required | Description | Default |
|---|---|---|---|
| to | No | ||
| days | No | ||
| from | No | ||
| site | Yes |
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full behavioral disclosure burden. It usefully reveals daily granularity, the included metrics, and that dates are in the site's timezone. However, it does not discuss output shape, date-range semantics, pagination, limits, or behavior when no data exists.
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 a single sentence, front-loaded with the key phrase 'Daily traffic series', and contains no filler. It is compact and efficient, though it could trade a little brevity for parameter and output 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 zero schema description coverage, no annotations, and no output schema, this description is too thin. It tells the agent what the output contains but not how to construct a valid request or interpret the response, leaving important details to guesswork.
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 0%, so the description needed to clarify the parameters. It only hints at 'site' and 'daily' and mentions the site's timezone, leaving 'from', 'to', and 'days' semantics to be inferred from their names and the tool name. That is too weak for four undocumented parameters.
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 identifies the resource ('a site') and the deliverable ('daily traffic series') with a concrete metric list, making the core purpose clear. It does not explicitly contrast with sibling tools like get_breakdown or get_stats, but the time-series framing and metric list differentiate it well enough.
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 implies when to use this tool — when a daily traffic series for a site is needed — but provides no explicit when-not-to-use guidance, prerequisites, or pointers to alternatives. An agent can infer the basic use case, but nothing tells it to prefer a sibling for other analytical needs.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Each tool targets a distinct resource or analytical view: site management (add/list/verify) is cleanly separated from analytics (stats, timeseries, visitors, realtime, bot report, breakdown, health). Even the traffic-related getters differ clearly by granularity and intent, so an agent is unlikely to confuse them.
The naming follows a consistent verb_noun pattern: add_site, list_sites, verify_site, and all analytics tools use get_<noun>. This makes the toolset predictable and easy to navigate.
Ten tools is well-scoped for an analytics product, covering both site administration and multiple data views without redundancy or bloat. Each tool earns its place in the API surface.
The core site lifecycle is covered (add, list, verify), and the analytics side is thorough with stats, timeseries, breakdown, realtime, visitors, bot reports, and health. Minor gaps exist, such as no remove/update site or deeper filtering options, but agents can complete typical workflows without dead ends.