Skip to main content
Glama

remote_configure

Add or replace a local Git remote configuration without network access, specifying repository path, remote name, and URL.

Instructions

Add or explicitly replace local remote configuration without network access.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYes
nameYes
replaceNo
repository_pathYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.3/5.0
Behavior2/5

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

With no annotations provided, the description must fully disclose behavioral traits. It states the mutation action ('Add or explicitly replace') and the offline nature, but does not cover side effects like overwriting existing remotes without the 'replace' flag, permission requirements, or error behavior. This is a significant gap for a mutation tool.

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 a single, front-loaded sentence with no filler. Every word contributes to the core action and context.

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?

For a mutation tool with four parameters, no annotations, and no output schema coverage, the description is too sparse. It lacks parameter explanations, usage distinctions, and side-effect disclosure, making it insufficient for an agent to invoke correctly without additional inference.

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%, so the description must compensate by explaining the meaning of the parameters. It does not mention repository_path, name, url, or replace beyond the generic action, leaving the agent to rely solely on parameter names, which are only partially self-explanatory.

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 uses a specific verb pair ('Add or explicitly replace') and names the resource ('local remote configuration'), plus a key qualifier ('without network access') that separates it from network-bound siblings like repository_clone/fetch/pull. It clearly distinguishes this tool from repository_remotes, which presumably lists remotes.

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 context (offline modification of local remotes) but does not explicitly state when not to use it or name alternative tools. An agent could infer that repository_remotes is for listing, but no explicit guidance is given.

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