git_pull
Pull the latest changes from the upstream Git remote into the app. Requires a remote to be configured first via set_git_remote.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| app | Yes | App ID (UUID) or subdomain |
Pull the latest changes from the upstream Git remote into the app. Requires a remote to be configured first via set_git_remote.
| Name | Required | Description | Default |
|---|---|---|---|
| app | Yes | App ID (UUID) or subdomain |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of disclosing behavior. It states the action (pull) but does not mention potential side effects such as overwriting local changes, conflicts, or authentication requirements. As a mutation tool, this lack of detail is a significant gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, concise, and front-loaded with the primary action. The prerequisite is stated in a separate sentence without unnecessary elaboration, making every word earn its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple with a single parameter and no output schema, so the description does not need to explain return values. However, as a mutation tool without annotations, it is missing behavioral details about side effects or outcomes. The prerequisite is mentioned, but the description could be more complete by explaining what happens after the pull.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, and the 'app' parameter is already fully described in the schema as 'App ID (UUID) or subdomain'. The description adds no additional parameter semantics beyond the schema, so the baseline 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Pull the latest changes from the upstream Git remote into the app') with a specific verb and resource. It distinguishes itself from sibling tools like git_push (push), git_info (info), and set_git_remote (configure remote), making the purpose unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides a clear prerequisite ('Requires a remote to be configured first via set_git_remote') which helps the agent understand when this tool can be used. It does not explicitly mention when not to use it or name alternative tools, but the context is clear enough for selecting this tool over related git operations.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.