This one wires Claude into Microsoft Power Automate cloud flows through your existing browser session, no Entra ID app registration required. A Chromium extension captures tokens and flow context while the MCP server exposes inspect, edit, validate, diff, and rollback commands. The workflow is deliberately constrained: you preview updates before saving, review diffs after changes land, and revert when something breaks. It also handles run inspection, manual trigger invocation, and basic Dataverse solution operations like adding flows to unmanaged solutions. Reach for it when you want an AI agent editing real Power Automate flows but need every change visible and reversible without mystery buttons or blind production edits.
Local-first MCP server and Chromium extension for AI-assisted Microsoft Power Automate work.
Use your existing logged-in browser session to let an MCP client inspect, validate, edit, run, review, and revert Power Automate cloud flows. No Microsoft Entra ID app registration, admin consent flow, or custom enterprise application setup is required to get started.
Early public signal: 15,000+ LinkedIn post views and 14 GitHub stars while the project is still small, practical, and moving fast.
Power Automate is powerful, but AI agents need more than raw convenience before they should touch real flows. This project keeps the workflow visible and reversible:
| Area | Capabilities |
|---|---|
| Context | Detect browser-captured flows, list flows, and explicitly lock onto a target flow. |
| Safe editing | Read the flow, preview the smallest candidate update, validate, save, review the diff, and revert. |
| Debugging | Inspect recent runs, latest run details, and action-level failures. |
| Testing | Invoke safe manual/request trigger flows and wait for the resulting run. |
| Solutions | List unmanaged Dataverse solutions, inspect solution components and environment variables, add existing flows, and create blank flows inside solutions. |
Write operations are deliberately scoped. The MCP does not expose solution deletion, component deletion, managed-solution modification, environment-variable writes, or blind production edits as the default path.
Register the MCP in Codex:
codex mcp add power-automate-local -- npx -y @kaael1/mcp-power-automate
Find the packaged extension path:
npx -y @kaael1/mcp-power-automate extension-path
Load that folder in Chromium:
chrome://extensions or edge://extensions.Load unpacked.extension-path.Then open or focus a Power Automate flow page. The extension captures the session and target context automatically.
Check readiness:
npx -y @kaael1/mcp-power-automate doctor
For a supervised edit, ask your MCP client to follow this loop:
doctorget_contextconnect_flowget_flowpreview_flow_updatevalidate_flowapply_flow_updateget_last_updatevalidate_flow again when availableFor run inspection and manual/request trigger tests, use list_runs, get_latest_run, get_run, get_run_actions, wait_for_run, get_trigger_callback_url, and invoke_trigger.
For Dataverse solution work, use list_solutions, list_solution_components, list_environment_variables, add_flow_to_solution, and create_flow_in_solution. Solution writes are intentionally limited to adding cloud flows to unmanaged solutions.
get_context
doctor
connect_flow
list_flows
list_solutions
list_solution_components
list_environment_variables
add_flow_to_solution
get_flow
preview_flow_update
validate_flow
apply_flow_update
get_last_update
revert_last_update
list_runs
get_latest_run
get_run
get_run_actions
wait_for_run
get_trigger_callback_url
invoke_trigger
create_flow
create_flow_in_solution
clone_flow
get_context, connect_flow, and get_flow before any write.preview_flow_update before saving.get_last_update after save so the diff is visible.revert_last_update when the saved result is wrong.If Power Automate rejects a save because of a connection permission problem, the MCP reports CONNECTION_AUTHORIZATION_FAILED and waits for the user to fix that connection in Power Automate. If the service rejects a field such as retryPolicy, the MCP reports SCHEMA_VALIDATION_FAILED with the rejected member so the agent can correct the candidate flow instead of guessing.
The extension can capture Power Automate, Power Platform/BAP, and Dataverse-audience tokens from your logged-in browser session. When those tokens are present, get_context and /health expose readiness details such as canManageSolutions.
This means the MCP can work without a new Microsoft Entra app registration, but it also means the browser session remains the live authority. If a token expires or a permission is missing, reopen or focus the relevant Power Automate, Power Apps, or Dataverse page and retry after capture.
The local bridge listens on 127.0.0.1:17373.
GET /health is kept for simple probes.GET /v1/health returns bridge identity and readiness.GET /v1/context returns the same context used by the MCP.GET /v1/commands lists the public v1 command surface.POST /v1/commands/:name runs any public v1 command with a JSON body.Only the process that owns the bridge port executes stateful work. If another process already owns the port, new MCP instances refuse to reuse it; stop the existing bridge process or choose a different POWER_AUTOMATE_BRIDGE_PORT.
npm install
npm run typecheck
npm run lint
npm run test
npm run build
npm run pack:dry-run
For a local clone, prefer registering Codex against the built server from this checkout:
npm run build
$nodePath = (Get-Command node).Source
$serverPath = Join-Path (Get-Location) "dist/server/index.js"
codex mcp add power-automate-local -- $nodePath $serverPath
If an older local entry exists, remove it first:
codex mcp remove power-automate-local
Load the browser extension from dist/extension after rebuilding. Runtime state lives in data/ and must not be committed.
MIT. See LICENSE.
therealtimex/browser-use
jae-jae/fetcher-mcp
merajmehrabi/puppeteer-mcp-server
com.thenextgennexus/playwright-mcp-server
saik0s/mcp-browser-use