Skip to main content
Glama

sync_git_to_workspace

Deploy a local Git PBIP tree to a Fabric workspace and receive skipped conflicts for manual resolution.

Instructions

Deploy a local Git PBIP tree to a Fabric workspace.

For v3 inicial the only conflict-resolution mode is manual: conflicts are surfaced in items_skipped for human review. The optional pre_deploy_profile + pre_deploy_findings arguments can be passed via the input schema when you add them to the MCP wrapper.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dry_runNo
repo_pathYes
workspace_idYes
branch_or_commitNoHEAD
conflict_resolutionNomanual

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.8/5.0
Behavior2/5

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

With no annotations provided, the description must disclose behavioral traits. It mentions that conflicts are surfaced in 'items_skipped' for manual review, which is useful. However, it does not state whether the operation is mutating, what happens to existing workspace content, or any side effects. The odd phrase 'For v3 inicial' is confusing and the mention of 'pre_deploy_profile' arguments that are not in the schema adds noise without clarifying behavior.

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

Conciseness2/5

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

The description is short but poorly structured. The first sentence is clear, but the rest contains a typo ('inicial'), an unclear reference to 'the MCP wrapper', and a sentence that seems to address developers rather than agents. It is not front-loaded with the most critical guidance, and every sentence does not earn its place. The content is confusing and detracts from the core purpose.

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?

Given the tool has 5 parameters (2 required) and an output schema, the description should provide enough context for an agent to call it correctly. It does not explain required parameters, the meaning of dry_run, or what the output contains (though 'items_skipped' is hinted). The description is insufficient for a deployment tool with multiple configuration options; an agent would likely struggle to invoke it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/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 parameters. It does not explain any of the five schema parameters (repo_path, workspace_id, dry_run, branch_or_commit, conflict_resolution). It vaguely references 'pre_deploy_profile' and 'pre_deploy_findings' which are not even in the schema, leaving the agent without any understanding of what each parameter means or expects.

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 clear verb and resource: 'Deploy a local Git PBIP tree to a Fabric workspace.' This is specific and distinguishes it from reverse-direction siblings like commit_workspace_to_git. While deploy_to_workspace exists, the PBIP/Git specificity narrows the scope. The statement fully conveys the tool's core function.

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 provides context about conflict-resolution mode and mentions pre_deploy arguments, but it does not explicitly state when to use this tool versus alternatives like plan_change, apply_plan, or deploy_to_workspace. No exclusions or conditions are given. It implies use for local Git deployment but fails to guide selection among similar deployment-related tools.

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