Skip to main content
Glama
pablo-horizun

Horizun PBI MCP

pbi_apply_audit_fixes

Apply planned Power BI audit fixes safely: each fix runs in its own transaction with rollback, reports failures without stopping remaining fixes.

Instructions

Aplica las acciones devueltas por pbi_plan_audit_fixes.

Requiere confirm=true. Cada accion se aplica por su propia via segura (transaccion, verificacion y rollback); si una falla, se reporta sin detener las demas y sin ocultarlo.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
actionsYes
confirmNo
request_idNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations provided, the description fully carries the burden of behavioral disclosure. It reveals that each action is applied via a safe path with transaction, verification, and rollback, and that failures are reported without halting others and without hiding them. This is strong for a mutation tool, though it omits permission/scope details.

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 remarkably compact: one purpose sentence, one prerequisite sentence, and one behavior sentence. Every line adds value and there is no redundant phrasing or filler.

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?

Given the presence of an output schema, the description does not need to explain return values. It covers the core aspects: purpose, prerequisite, and error-handling behavior. A small gap remains around what happens if confirm=false or what request_id is used for, but overall it is well-rounded for a workflow-dependent tool.

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

Parameters4/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. It clarifies that 'actions' should be the actions returned by pbi_plan_audit_fixes and that 'confirm' must be true for the operation to proceed. However, 'request_id' remains unexplained, leaving a minor gap.

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 states a specific verb ('Aplica' / applies) and a precise resource ('las acciones devueltas por pbi_plan_audit_fixes' / the actions returned by pbi_plan_audit_fixes). This clearly differentiates the tool from siblings like pbi_plan_audit_fixes (planning) and other audit/list tools.

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 description gives a clear prerequisite ('Requiere confirm=true') and implicitly establishes the workflow by referencing pbi_plan_audit_fixes as the source of actions. It does not explicitly state when not to use it or name alternatives, but the planning/apply pairing is evident from the sibling list.

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

Deploy Server

Other Tools