Skip to main content
Glama

repository_pull

Pull and integrate remote branch updates into a clean local branch, accepting only validated fast-forward merges to maintain repository integrity.

Instructions

Fetch and integrate only a validated fast-forward into a clean local branch.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
remoteYes
remote_branchYes
repository_pathYes
declaration_pathNoarchitecture.yaml

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?

With no annotations, the description carries the full burden and does disclose key behavioral guardrails: integration only happens for a validated fast-forward and requires a clean branch. However, it does not state side effects, how validation is performed, or what happens when preconditions fail.

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?

One sentence with no filler, and the most important scoping condition is front-loaded. Every part contributes to understanding the operation.

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

Completeness2/5

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

The core semantics are clear, but this is a 4-parameter Git operation with no annotation support, zero parameter descriptions, and a subtle declaration_path default that is never explained. The description is too terse for an agent to know what 'validated' means or how to supply parameters correctly.

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?

Schema description coverage is 0%, and the description does not name or explain any of the four parameters (repository_path, remote, remote_branch, declaration_path). 'Fetch and integrate' weakly implies the role of remote and remote_branch, but the important declaration_path default is left undocumented.

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?

Uses a specific verb+resource: 'Fetch and integrate ... into a clean local branch' and adds a hard scope condition 'only a validated fast-forward' that clearly separates it from siblings like repository_fetch (fetch-only) and repository_commit. The purpose is unmistakable.

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

Usage Guidelines4/5

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

The phrase 'only a validated fast-forward into a clean local branch' gives clear context for when this tool is appropriate and implies non-fast-forward or dirty-branch cases are out of scope. It does not explicitly name alternative tools, so it stops short of a 5.

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