Skip to main content
Glama

git_status

Check which files are modified, staged, or untracked in your Odoo.sh Git repository before committing changes.

Instructions

Get git status showing modified, staged, and untracked files

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.6/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full burden. It does disclose what the result covers (modified, staged, untracked categories), which is genuine behavioral context, but says nothing about read-only safety, output size limits, path scoping, or whether ignored files are excluded.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

One short, front-loaded sentence with no filler. It loses a point only because the phrase 'git status' restates the operation name rather than adding information.

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?

With no output schema and no annotations, the description usefully enumerates the file categories returned by git status, which is the main thing an agent needs to know. It is nearly complete for a simple, parameterless read tool; only edge behaviors like ignored files or truncation are unaddressed.

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?

The tool takes zero parameters, so the baseline of 4 applies. There is no parameter syntax to explain and the description correctly avoids inventing any.

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?

States a specific verb and resource (get git status) plus the categorical content returned: modified, staged, and untracked files. It is clearly distinguishable from siblings like git_add or git_commit by the read-only nature of the operation, though it does not name those siblings explicitly.

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 usage – checking working-tree state before staging or committing – but never states when to use it versus alternatives such as get_current_branch or list_branches. For an obvious read command, implied usage is adequate but unhelpful for disambiguation.

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