Skip to main content
Glama
adog0822

@loxeai/mcp-server

by adog0822

List findings from a scan batch

list_findings
Read-onlyIdempotent

Retrieve scan findings in paginated batches from a prior IaC scan, filterable by severity, SOC 2 control, or unmapped status, then request full details for any finding.

Instructions

Pages through findings from a previous scan_iac call. Returns lightweight rows; call get_finding for full detail on one.

Findings with UNKNOWN severity are never filtered out by minSeverity. Checkov's open-source build often omits severity metadata, and dropping those findings would under-report real misconfigurations.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax rows to return. Default 50.
cursorNoOpaque cursor from a previous call's nextCursor.
batchIdYesBatch ID returned by scan_iac.
controlIdNoOnly findings mapped to this SOC 2 control.
minSeverityNoOnly findings at or above this severity (UNKNOWN always included).
unmappedOnlyNoOnly findings no rule could map to a control.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
totalYes
batchIdYes
findingsYes
returnedYes
nextCursorYes

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observedv0.1.0

TDQS

A4.9/5.0
Behavior5/5

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

Annotations already mark this read-only and idempotent, and the description adds meaningful behavioral context beyond those hints: it returns lightweight rows, pages via a cursor, and—crucially—never filters UNKNOWN severity findings, with a rationale. This non-obvious filter behavior could change an agent's interpretation of results, so disclosing it is high value.

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 compact and front-loaded: the main action and sibling distinction appear in the first sentence, and the second paragraph justifies a crucial filter exception without repetition. Every sentence earns its place.

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

Completeness5/5

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

For a paginated list tool with a rich output schema and full parameter documentation, this description covers the workflow context, row granularity, and a key behavioral exception. Nothing an agent needs to call it correctly is missing; the output schema presumably handles return-field details.

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 coverage is 100%, so the baseline is 3. The description adds value by explaining the UNKNOWN severity behavior with an underlying reason and by characterizing the return rows as lightweight, which informs how an agent should interpret limit and cursor parameters. It does not systematically enrich every parameter, but the minSeverity context goes beyond the schema.

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 and resource: 'Pages through findings from a previous scan_iac call.' It also distinguishes itself from get_finding by noting it returns lightweight rows rather than full detail, which differentiates it from a key sibling without opening schemas.

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

Usage Guidelines5/5

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

It explicitly ties usage to a prerequisite ('from a previous scan_iac call') and routes the agent to get_finding when full detail is needed. The UNKNOWN severity caveat also tells the agent when not to expect filtering behavior, providing actionable selection guidance.

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

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/adog0822/loxeai-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server