Skip to main content
Glama

get_risks

Retrieve the top account risks ranked by severity and likelihood, scoped to internal or customer audiences.

Instructions

The top top_n risks visible to audience, ranked by severity x likelihood.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
top_nNo
audienceNocustomer

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It discloses that results are ranked and filtered by audience, which is useful. However, it does not explicitly state read-only behavior, authentication requirements, or any side effects, though the 'get' verb implies a read operation.

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?

A single 13-word sentence with no waste, front-loaded with the main action and parameters. Every word earns its place.

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?

Given the tool's simplicity (two optional parameters) and the presence of an output schema, the description covers purpose, ranking, and filtering adequately. It lacks error conditions or prerequisites, but for a simple read operation this is sufficient.

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

Parameters4/5

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

Schema description coverage is 0%, but the description explains both parameters: top_n as the count and audience as the visibility filter. This adds meaning beyond the schema's types and defaults, effectively compensating for the lack of schema descriptions.

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

Purpose5/5

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

The description states a specific verb ('get'), resource ('risks'), and the ranking logic (severity x likelihood), clearly distinguishing it from siblings like get_health_score or get_metric_trend. The scope is unambiguous.

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 provides context on what the tool returns but does not explicitly state when to use it over alternatives or when not to use it. No exclusions or comparisons are given, leaving the agent to infer usage.

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