plugins marketplace
← All plugins

flowstudio-power-automate

v1.0.1

Debug, build, manage, and govern Power Automate cloud flows via FlowStudio MCP. Five skills for diagnostics, deployment, tenant-wide monitoring, and compliance metadata.

CodexClaude Code5 skills

by Flow StudioMIT27updated 3 months ago

Source

git clone https://github.com/ninihen1/power-automate-mcp-skills

Clone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.

Layout

flowstudio-power-automate/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
├── skills/power-automate-build/SKILL.md
├── skills/power-automate-debug/SKILL.md
├── skills/power-automate-governance/SKILL.md
├── skills/power-automate-mcp/SKILL.md
└── skills/power-automate-monitoring/SKILL.md

Skills5

power-automate-buildskills/power-automate-build/SKILL.md

Build, scaffold, and deploy Power Automate cloud flows using the FlowStudio MCP server. Your agent constructs flow definitions, wires connections, deploys, and tests — all via MCP without opening the portal. Load this skill when asked to: create a flow, build a new flow, deploy a flow definition, scaffold a Power Automate workflow, construct a flow JSON, update an existing flow's actions, patch a flow definition, add actions to a flow, wire up connections, or generate a workflow definition from scratch. Requires a FlowStudio MCP subscription — see https://mcp.flowstudio.app

power-automate-debugskills/power-automate-debug/SKILL.md

Debug failing Power Automate cloud flows using the FlowStudio MCP server. The Graph API only shows top-level status codes. This skill gives your agent action-level inputs and outputs to find the actual root cause. Load this skill when asked to: debug a flow, investigate a failed run, why is this flow failing, inspect action outputs, find the root cause of a flow error, fix a broken Power Automate flow, diagnose a timeout, trace a DynamicOperationRequestFailure, check connector auth errors, read error details from a run, or troubleshoot expression failures. Requires a FlowStudio MCP subscription — see https://mcp.flowstudio.app

power-automate-governanceskills/power-automate-governance/SKILL.md

Govern Power Automate flows and Power Apps at scale using the FlowStudio MCP cached store. Classify flows by business impact, detect orphaned resources, audit connector usage, enforce compliance standards, manage notification rules, and compute governance scores — all without Dataverse or the CoE Starter Kit. Load this skill when asked to: tag or classify flows, set business impact, assign ownership, detect orphans, audit connectors, check compliance, compute archive scores, manage notification rules, run a governance review, generate a compliance report, offboard a maker, or any task that involves writing governance metadata to flows. Requires a FlowStudio for Teams or MCP Pro+ subscription — see https://mcp.flowstudio.app

power-automate-mcpskills/power-automate-mcp/SKILL.md

Foundation skill for Power Automate via FlowStudio MCP — auth setup, the reusable MCP helper (Python + Node.js), tool discovery via `list_skills` / `tool_search`, and oversized-response handling. Load this skill first when connecting an agent to Power Automate. For specialized workflows, load `power-automate-build`, `power-automate-debug`, `power-automate-monitoring` (Pro+), or `power-automate-governance` (Pro+) — each contains the workflow narrative, this skill provides the plumbing they all rely on. Requires a FlowStudio MCP subscription or compatible server — see https://mcp.flowstudio.app

power-automate-monitoringskills/power-automate-monitoring/SKILL.md

Pro+ subscription required. Tenant-wide Power Automate monitoring using the FlowStudio MCP cached store: failure rates, run-health trends, maker/app inventory, inactive owners, and compliance/health reports. Use only for aggregated tenant views. For one environment, one flow, run control, or root-cause debugging, use power-automate-mcp, power-automate-debug, or the server monitor-flow bundle. Requires FlowStudio for Teams or MCP Pro+.

Manifests2

.codex-plugin/plugin.json
{
  "name": "flowstudio-power-automate",
  "version": "1.0.1",
  "description": "Debug, build, manage, and govern Power Automate cloud flows via FlowStudio MCP. Five skills for diagnostics, deployment, tenant-wide monitoring, and compliance metadata.",
  "author": {
    "name": "Flow Studio",
    "url": "https://flowstudio.app"
  },
  "homepage": "https://mcp.flowstudio.app",
  "repository": "https://github.com/ninihen1/power-automate-mcp-skills",
  "license": "MIT",
  "keywords": [
    "power-automate",
    "mcp",
    "power-platform",
    "debugging",
    "flow-studio",
    "governance",
    "monitoring",
    "audit",
    "compliance"
  ],
  "skills": "./skills/",
  "interface": {
    "displayName": "Flow Studio Power Automate",
    "shortDescription": "Debug, build, manage, and govern Power Automate flows with AI agents",
    "longDescription": "Give your AI agent the same visibility you have in the Power Automate portal — plus tenant-wide governance and monitoring. The Graph API only returns top-level run status. Flow Studio MCP exposes action-level inputs, outputs, loop iterations, and nested child flow failures. Five bundled skills: power-automate-mcp (operations), power-automate-debug (diagnostics), power-automate-build (deployment), power-automate-monitoring (Pro+ tenant health), power-automate-governance (Pro+ compliance metadata).",
    "developerName": "Flow Studio",
    "category": "cloud-services",
    "capabilities": [
      "Power Automate flow operations and debugging",
      "Action-level inputs, outputs, and loop iteration inspection",
      "Flow definition build and deployment from natural language",
      "Tenant-wide monitoring and health dashboards (Pro+)",
      "Governance metadata and compliance auditing (Pro+)"
    ],
    "defaultPrompt": [
      "List my Power Automate flows",
      "Debug why this flow failed",
      "Build a new flow that sends form data via email",
      "Show me the top failing flows in my tenant this week",
      "Tag this flow as business-critical"
    ],
    "websiteURL": "https://mcp.flowstudio.app",
    "brandColor": "#0078D4"
  }
}
.claude-plugin/plugin.json
{
  "name": "flowstudio-power-automate",
  "version": "1.0.1",
  "description": "Debug, build, manage, and govern Power Automate cloud flows via FlowStudio MCP. Five skills for diagnostics, deployment, tenant-wide monitoring, and compliance metadata.",
  "author": {
    "name": "Flow Studio"
  },
  "homepage": "https://mcp.flowstudio.app",
  "repository": "https://github.com/ninihen1/power-automate-mcp-skills",
  "license": "MIT",
  "keywords": [
    "power-automate",
    "mcp",
    "power-platform",
    "debugging",
    "flow-studio",
    "governance",
    "monitoring",
    "audit",
    "compliance"
  ]
}