Skip to main content
Glama

get_article_effectiveness

Generate a blog article performance report showing verdict, change since last measurement, and cannibalization list. Uses historical data without new API requests.

Instructions

Отчёт по статьям блога: вердикт и дельта по последнему замеру, отдельно список каннибализаций. Данные из истории, новых запросов к API не делает.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
project_idNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.2

TDQS

A3.6/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden. It explicitly states that no new API requests are made, indicating a read-only, historical operation, and describes the report contents. This is meaningful behavioral disclosure, though it lacks details on permissions or error behavior.

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

Conciseness5/5

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

The description is two concise sentences that immediately state the report's content and the historical, non-mutating nature of the call. Every word adds value, and it is efficiently front-loaded.

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

Completeness4/5

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

For a tool with a single parameter, no output schema, and no annotations, the description adequately conveys what the report contains and that it is historical. It does not detail the exact structure of the verdict or delta, but an agent can reasonably infer the expected output. Minor gaps remain, but it is nearly complete for its simplicity.

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?

The sole parameter, project_id, is an integer with a self-explanatory name, and its meaning is clear from the schema even without description text. The description does not add any further explanation, but the parameter is simple enough that the schema name suffices; a baseline 3 is appropriate given the low schema coverage.

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?

The description clearly states the tool returns a report on blog articles including a verdict, delta, and cannibalization list. It identifies the resource (blog articles) and the specific outputs, but does not explicitly distinguish it from sibling tools like check_articles, so it falls short of a 5.

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?

The description notes that data comes from history and that no new API requests are made, implying it is a lightweight read-only call. However, it provides no explicit guidance on when to choose this tool over alternatives, nor any exclusions or context for selection.

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