Developer Tools
flowstudio.app
Manages Power Automate flows and provides tool search capabilities for automation.
ENDPOINT 1
https://mcp.flowstudio.app/mcp
MCP server metadata
- Name
- Flow Studio MCP
- Version
- 1.2.48
Flow Studio MCP exposes ~20 tools for inspecting and modifying Microsoft Power Automate flows. When the user request maps to one of these named workflows, prefer the matching skill bundle: - diagnose-connection-references: inspect solution connection-reference failures with read-only Dataverse checks - build-flow: read or modify a flow definition - debug-flow: investigate failed runs, drill into action errors - monitor-flow: start/stop, trigger, cancel, or resubmit a run - discover: enumerate environments, flows, connections in a tenant - governance: tag, monitor, and audit flows (Pro+ only; not available over SSO) To find the right tool, use the meta-tools: - `list_skills` — enumerate the bundles above with their member tools - `tool_search` — fetch tool schemas by skill, exact selector, or free-text query: "skill:debug-flow" (load a whole bundle) query: "select:get_live_flow,update_live_flow" (exact tools) query: "cancel run" (keyword match) If a tool misbehaves or a capability is missing, call `report_bug` — it is free and can attach session diagnostics. All three support/meta-tools are non-billable and remain available after quota exhaustion. Prefer them over guessing tool names. Tools prefixed `[DEPRECATED]` will be removed — use the suggested replacement.
Known tools 34
list_skillsList all skill bundles — named groups of tools the agent typically uses together for a single user intent (diagnose-connection-references, build-flow, debug-flow, monitor-flow, discover, governance).
Inferred read-onlyreport_bugReport a Flow Studio MCP bug or missing capability, append text evidence, or check your reports.
Inferred read-onlylist_store_flows[Requires Pro+ plan] List Power Automate flows from the Power Clarity cache.
Inferred read-onlyget_store_flow[Requires Pro+ plan] Get full details for a single Power Automate flow from the Power Clarity cache.
Inferred read-onlyget_store_flow_trigger_url[Requires Pro+ plan] [DEPRECATED — scheduled for removal] Get the trigger URL and trigger type for an HTTP-triggered flow from the Power Clarity cache.
Inferred read-onlyget_store_flow_runs[Requires Pro+ plan] Get cached run history for a flow from the Power Clarity store.
Inferred read-onlyget_store_flow_errors[Requires Pro+ plan] [DEPRECATED — scheduled for removal] Get cached failed run history for a flow from the Power Clarity store (convenience wrapper around get_store_flow_runs with status=Failed).
Inferred read-onlyget_store_flow_summary[Requires Pro+ plan] Get aggregated run statistics for a flow from the Power Clarity cache: total runs, success count, failure count, success rate, fail rate, and average/max duration over a time window.
Inferred read-onlyset_store_flow_state[Requires Pro+ plan] [DEPRECATED — scheduled for removal] Start or stop a Power Automate flow via the live Power Automate API, then persists the updated state back to the Power Clarity store.
Inferred read-onlyupdate_store_flow[Requires Pro+ plan] Update governance/metadata fields on a flow record in the Power Clarity store (description, business impact, owner team, tags, monitor flag, notification settings, etc.
Potential side effectslist_store_environments[Requires Pro+ plan] List all Power Platform environments from the Power Clarity cache.
Inferred read-onlylist_store_makers[Requires Pro+ plan] List all makers (citizen developers / AAD users) from the Power Clarity cache.
Inferred read-onlyget_store_maker[Requires Pro+ plan] Get details for a single maker from the Power Clarity cache by their key (usually the AAD object ID).
Inferred read-onlylist_store_power_apps[Requires Pro+ plan] List all Power Apps canvas apps from the Power Clarity cache.
Inferred read-onlylist_store_connections[Requires Pro+ plan] List all Power Platform connections from the Power Clarity cache.
Inferred read-onlyget_live_flow_trigger_url[DEPRECATED — scheduled for removal] Fetch the live trigger URL and method for an HTTP-triggered flow directly from the Power Automate API.
Inferred read-onlyget_live_flow_runsFetch live run history for a flow directly from the Power Automate API using impersonation — not the cached store.
Inferred read-onlyget_live_flow_run_errorFetch error details for a specific flow run from the live Power Automate API.
Inferred read-onlyget_live_flow_run_action_outputsDownload inputs and outputs for actions in a flow run via SAS blob links from the live Power Automate API.
Inferred read-onlytrigger_live_flowRun a flow that has a Request trigger — HTTP request, manual Button, or PowerApps.
Inferred read-onlycancel_live_flow_runCancel a currently running Power Automate flow run via the live PA API.
Inferred read-onlyresubmit_live_flow_runResubmit a failed or cancelled Power Automate flow run via the live PA API, re-using the original trigger payload.
Inferred read-onlyset_live_flow_stateStart or stop a Power Automate flow via the live Power Automate API using an impersonated service account.
Inferred read-onlyget_live_flowFetch the full native Power Automate flow JSON from the PA API, including the complete flow definition (triggers, actions, parameters, outputs).
Inferred read-onlyget_live_flow_http_schema[DEPRECATED — scheduled for removal] Inspect the HTTP interface of a Power Automate Request-triggered flow: returns the JSON schema the trigger URL expects as the POST body, any required headers, the HTTP method, and the JSON schema(s) defined on any Response action(s) in the flow.
Potential side effectslist_live_environmentsList all Power Platform environments directly from the Power Automate API — not the cached store.
Inferred read-onlylist_live_connectionsList Power Platform connections in an environment directly from the Power Automate API — not the cached store.
Inferred read-onlydescribe_live_connectorDescribe a live Power Platform connector/API and its operations.
Inferred read-onlyget_live_dynamic_optionsResolve live dynamic dropdown/list options for a connector operation parameter.
Inferred read-onlyget_live_dynamic_propertiesResolve live dynamic schema/properties for a connector operation parameter.
Inferred read-onlyadd_live_flow_to_solutionMigrate a non-solution Power Automate flow into a solution via the admin migrateFlows API.
Inferred read-onlyCONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.flow-studio-mcp]
url = "https://mcp.flowstudio.app/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"flow-studio-mcp": {
"type": "http",
"url": "https://mcp.flowstudio.app/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: flow-studio-mcp
Remote MCP URL: https://mcp.flowstudio.app/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"flow-studio-mcp": {
"url": "https://mcp.flowstudio.app/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"flow-studio-mcp": {
"type": "http",
"url": "https://mcp.flowstudio.app/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "flow-studio-mcp",
"transport": "streamable-http",
"url": "https://mcp.flowstudio.app/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
TRUST AND VERIFICATION EVIDENCE
Trust Data Available
BuiltWith Trust API v2 evidence for flowstudio.app was fetched 2026-08-29T16:12:26.119Z.
flowstudio.app is assessed as Trusted: Domain has an established technology history spanning over a year.
Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.