Skip to main content
Glama

stat_site_load

Read-only

Retrieve hourly and daily website load statistics for a month using a site ID to analyze traffic patterns and server performance.

Instructions

Детальная статистика нагрузки сайта (почасовая и посуточная за месяц).

Args: site_id: ID сайта

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
site_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

B3.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, destructiveHint=false and openWorldHint=false, so safety is covered. The description adds the useful scope detail that data is aggregated hourly and daily over a month, but says nothing about permissions, limits, or performance.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two short statements with the purpose front-loaded; no filler. The Args block is somewhat redundant with the schema but remains compact.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

An output schema exists, so return values need not be explained, and the description does convey the time granularity. Still missing usage context and any indication of how this differs from the other stat_* tools, leaving real gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Only one parameter exists, but schema description coverage is 0%, and the description merely restates 'site_id: ID сайта' without adding format, source, or valid-range information beyond the schema title. It does confirm the required argument, which is mildly helpful.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb+resource: load statistics for a site, with the granularity (hourly and daily for a month). However, it does not distinguish itself from close siblings like stat_site_list_load or stat_db_load, so an agent must guess which statistic is which.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No when-to-use guidance, no exclusions, and no reference to alternatives such as stat_site_list_load. The agent must infer the context from the name alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.