Skip to main content
Glama
Mipiti
by Mipiti

Get Findings Risks

get_findings_risks

Retrieve a workspace-wide triage snapshot of open findings, active risk acceptances, and at-risk control objectives to prioritize next security actions.

Instructions

Workspace-scoped triage dashboard: open findings, active risk acceptances, and at-risk Control Objectives across every model the workspace can access.

Use this as the entry point when an operator asks "what's open?" or "what should I work on next?" — one round-trip returns all three categories with model context and risk dimensions (severity, status, risk_tier, owner, review_by) so the agent can triage without per-model fan-out. The endpoint is read-only and fast; it composes from existing per-model queries server-side.

Returns the envelope verbatim: {workspace_id, evaluated_at, models, findings, risk_acceptances, at_risk_cos, summary}. summary carries totals (open_findings, total_findings, active_risk_acceptances, total_risk_acceptances, at_risk_cos) for quick health-check responses.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
server_versionYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.62.2
  2. Removedv0.62.0
  3. First observedv0.57.0

TDQS

A4.1/5.0
Behavior5/5

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

With no annotations provided, the description carries the full burden, and it delivers: it explicitly states the endpoint is read-only and fast, composes server-side from existing per-model queries, and returns the envelope verbatim. This gives an agent a clear mental model of the operation's safety and 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 well-structured: purpose first, usage trigger second, return envelope third. Each sentence adds substantive information, and there is no filler or redundancy.

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?

The description covers scope, contents, usage context, and return shape in enough detail for an agent to understand what the tool provides. The only notable missing context is the meaning of 'server_version' and how it relates to workspace-triage behavior.

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

Parameters1/5

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

The sole required parameter 'server_version' has no schema description and no coverage in the tool description. The description never mentions the parameter, its purpose, format, or allowed values, leaving the agent to guess what to pass. With 0% schema description coverage, the description needed to compensate and did not.

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 clearly identifies a specific resource ('workspace-scoped triage dashboard') and enumerates exactly what it returns: open findings, active risk acceptances, and at-risk Control Objectives across every model. This distinguishes it from siblings like list_findings and list_risk_acceptances by emphasizing the aggregate, multi-model scope.

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

Usage Guidelines4/5

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

The description gives an explicit trigger ('what's open?' or 'what should I work on next?') and positions the tool as the entry point, with the benefit of no per-model fan-out. It does not explicitly name an alternative tool or state when not to use it, so it falls just short of a full 5.

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

Deploy Server

Other Tools