Skip to main content
Glama

get_messages

Read-only

Retrieve errors and warnings from the latest FPGA build stages, filtered by severity and pattern. Diagnose synthesis, place, route, and bitstream issues.

Instructions

Errors and warnings from the latest run of each stage (synthesis, debug core, place, route, bitstream), most severe first. severity is the minimum level; pattern is a case-insensitive regex filter.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
patternNo
projectYes
severityNowarning

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior4/5

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

Annotations already mark the tool as read-only and non-destructive, so the description adds value by explaining severity ordering, severity threshold behavior, and case-insensitive regex filtering. It does not mention output format or pagination, but for a read-only query tool this is a minor gap.

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?

Two tight sentences deliver the core purpose first and then parameter semantics. There is no filler, repetition, or unnecessary detail.

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 read-only filtered-list tool, the description covers the main resource, sort order, and filter semantics, while the schema supplies required parameters and defaults. It does not describe the output structure, but the return type is essentially named and no output schema exists.

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?

With 0% schema description coverage, the description compensates by explaining the semantics of severity and pattern. However, it leaves project and limit undocumented, so it only partially covers the four parameters and relies on schema titles/defaults for the rest.

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 identifies a specific resource: errors and warnings from the latest run of each named stage (synthesis, debug core, place, route, bitstream), and adds sort order. It is clear and specific, but it does not explicitly distinguish itself from sibling reporting tools such as get_build_status or list_reports.

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

Usage Guidelines3/5

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

The scope and filter semantics imply when the tool is useful, but there is no explicit when-to-use or when-not-to-use guidance and no mention of alternatives. An agent must infer its role among many reporting siblings.

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