Skip to main content
Glama

Power Automate MCP Server by Flow Studio

trigger_live_flow

Run a flow on demand. Works with Request triggers — HTTP request, manual Button, or PowerApps — and with RECURRENCE (scheduled) flows, which it runs immediately, the same as the maker portal's "Run flow" button; a scheduled flow takes no inputs, so passing body to one is refused rather than silently dropped. Pass trigger inputs as body. Returns httpStatus, response body, triggerKind, how it was invoked, and runName when the platform reports one (use get_live_flow_runs otherwise). Automated connector triggers (webhooks, "when an item is created") cannot be run this way — they only fire from their source event.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyNoJSON body to POST to the trigger URL. Omit for flows that expect an empty body.
flowNameYesName (ID) of the flow.
environmentNameYesName of the Power Platform environment.

TDQS

A4.8/5.0
Behavior5/5

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

The description substantially exceeds the minimal annotations (readOnlyHint=false, etc.) by disclosing side effects (runs a flow), return fields (httpStatus, response body, triggerKind, runName), and the refusal of body for scheduled flows. It also clarifies that runName may be absent and directs to get_live_flow_runs otherwise—information annotations cannot convey.

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

Conciseness4/5

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

The description is longer than typical but every sentence earns its place: purpose first, then trigger-type details, then parameter guidance, then return notes, then exclusions. It is front-loaded and structured logically, though slightly dense for a quick scan.

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

Completeness5/5

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

For a tool that triggers flows with no output schema, the description covers all essential runtime concerns: what inputs to pass, how to handle flows that take no inputs, what the response contains, and which trigger types are unsupported. It also points to the sibling tool for run details, making it self-contained for correct invocation.

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?

While schema coverage is 100% and each parameter is already documented, the description adds critical usage semantics for the body parameter: 'Pass trigger inputs as `body`' and 'Omit for flows that expect an empty body,' plus the refusal rule for recurrence flows. This goes beyond the schema's generic 'JSON body to POST' and helps the agent construct correct calls.

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?

States a specific verb-resource pair ('Run a flow on demand') and immediately distinguishes itself from siblings by naming the alternative tool for retrieving runs ('use get_live_flow_runs otherwise'). The trigger-type coverage (Request, recurrence) is explicit, so an agent can tell it apart from get_live_flow_trigger_url or get_live_flow without opening schemas.

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

Usage Guidelines5/5

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

Provides explicit when-to-use conditions: works with Request triggers (HTTP, Button, PowerApps) and recurrence flows, and clearly states when NOT to use it (Automated connector triggers) and what to do instead (they only fire from their source event). Also notes the refusal of body for scheduled flows, adding a behavioral caveat that prevents misuse.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.9/5.0
Disambiguation4/5

The consistent live/store prefixes and clear resource nouns make most tools distinguishable, and deprecated tools explicitly flag replacements. However, the duplicated live-vs-cache surfaces and multiple run/error-history tools can still require careful reading to choose correctly.

Naming Consistency5/5

All tools follow a consistent snake_case verb_noun pattern with stable qualifiers like live, store, flow, and run. Even meta-tools like list_skills and tool_search fit the same convention, and the few longer names such as add_live_flow_to_solution remain predictable.

Tool Count2/5

34 tools is well above the 25+ threshold for 'too many,' and the set is inflated by live/store duplication plus four deprecated tools scheduled for removal. Several tools could be consolidated or dropped without losing capability.

Completeness3/5

The server covers the main flow lifecycle well: list/get/create/update, state changes, running, resubmission, run diagnostics, environments, connections, and solution migration. Notable gaps include no delete flow, no remove-from-solution operation, and read-only connection management, which agents can partially work around.