Skip to main content
Glama

get-git-history

Returns git commit history for a project (all vaults) or a single vault. Provide exactly one of project_id or vault_id. Requires full data access (a paid plan; verification-only plans are not included). Requires X-API-Key (existing users can generate an API key in the web app). If headers aren't supported, pass api_key in arguments.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax results to return (default 50, max 200).
authorNoFilter: exact match on commit author (case-insensitive).
branchNoFilter: exact match on branch name.
offsetNoNumber of results to skip, for pagination.
api_keyNoOptional API key for clients that cannot set X-API-Key headers.
date_toNoFilter: commits on or before this date (YYYY-MM-DD).
vault_idNoVault id (from create-code-vault or list_vaults). Returns data for this vault only.
date_fromNoFilter: commits on or after this date (YYYY-MM-DD).
project_idNoProject id (from create_project). Returns data aggregated across all vaults in the project.

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations, the description carries the behavioral burden and is largely successful: it discloses authentication requirements, plan-level eligibility, the api_key fallback, and the project/vault scoping. It does not describe response shape or ordering, but the operation is clearly a read and no hidden effects are implied.

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 three front-loaded sentences: the first states purpose and scope, the second covers plan eligibility, and the third covers auth fallback. Every sentence earns its place with no filler or repeated tool name.

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?

Together with the detailed schema, the description covers selection, filters, pagination, plan requirements, and authentication. The main gap is the absence of an explicit return format or ordering, and there is no output schema to compensate. This is a moderate gap for a history read, but the tool is still callable correctly with the provided information.

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?

All 9 parameters are already covered with descriptions in the schema, so the baseline is 3. The tool description mostly restates the oneOf constraint and the api_key fallback, both of which are already present in the schema. It adds little semantic meaning beyond what an agent can already read from the parameter definitions.

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 opens with a concrete action and resource: 'Returns git commit history for a project (all vaults) or a single vault.' It explicitly distinguishes the two scopes, avoiding tautology and separating this from sibling tools focused on reports, scans, or vault metadata.

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 states when the tool applies and gives a clear selection rule: provide exactly one of project_id or vault_id. It also provides when-not guidance by excluding verification-only plans and requiring full data access, plus an auth fallback for header-less clients. No sibling tool competes for this commit-history use case, so alternative routing is not needed.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.7/5.0
Disambiguation3/5

Tools are mostly distinct by resource and action, but the three get-code-vault-* variants (summary, results, reports) plus get_vault create a cluster of similar-sounding retrieval tools. The use of both 'vault' and 'code-vault' in names increases the chance of misselection, though descriptions do clarify the differences.

Naming Consistency2/5

Naming convention is inconsistent: snake_case (create_account, get_vault, list_projects) is mixed with kebab-case (create-code-vault, get-code-vault-summary, reanalyze-code-vault). The same concept is referred to as 'vault' and 'code-vault' across tool names, breaking predictability.

Tool Count4/5

At 16 tools, the server is slightly over the ideal 3-15 range but still reasonable for the domain covering accounts, projects, vaults, and analysis retrieval. The count is justified by the distinct resources and operations, though a few vault-related tools could potentially be consolidated.

Completeness4/5

The server provides solid lifecycle coverage: account create/get/delete, project CRUD (minus update), vault create/read/delete/reanalyze, plus API key rotation. Minor gaps exist, such as no update methods for accounts or projects, but the core workflows are well-supported without dead ends.