Skip to main content
Glama

Inspect AgentFEM project

inspect_project
Read-onlyIdempotent

Check a finite-element project's validation status and retrieve recent immutable run identities without modifying any files.

Instructions

Read project validation and recent immutable run identities without modifying the project.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.7/5.0
Behavior3/5

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

Annotations already cover readOnlyHint, idempotentHint, and destructiveHint=false, so the description's 'without modifying' is redundant with structured data. It adds some useful scoping by naming validation results and 'recent immutable run identities,' but it does not describe return behavior or edge cases beyond that.

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 one tight sentence, starts with the action verb, and contains no filler or repetition beyond the annotation-aligned safety note. Every word contributes to understanding what the tool does.

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 one-parameter read-only tool with strong annotations and an output schema, the description conveys the essential purpose and scoping. The main gaps are the unexplained path parameter and the lack of explicit sibling differentiation, but the tool's low complexity keeps these gaps modest.

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

Parameters2/5

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

The schema has 0% description coverage for the sole parameter, and the description never explains what 'path' should point to or what format is expected. The word 'project' is the only hint, which is too weak to help an agent correctly populate the path parameter.

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 names a concrete verb and resources: 'Read project validation and recent immutable run identities.' This clearly distinguishes it from mutating siblings like create_project or submit_run and identifies what the agent will get back. 'Without modifying the project' further pins down its read-only role.

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 description implies a read-only inspection use case, but it never explicitly says when to choose this tool over siblings such as describe_system or get_run_status. It gives no exclusions or alternative routing, so usage context is only inferred from wording rather than stated.

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