flowstudio-power-automate-build

flowstudio-power-automate-build is a skill for Claude Code from ninihen1/power-automate-mcp-skills. It costs 127 tokens per session (4,756 once invoked), scanned A, a copy of flowstudio-power-automate-build, MIT.

A guide for creating and deploying Power Automate cloud flows through FlowStudio’s MCP server. Power Automate flows are automated workflows that connect services and perform actions.

In plain words
What is it for?
Use it to find existing flows, build definitions, connect required services, deploy flows, and verify or test them. A reachable FlowStudio server and valid JWT are required.
Why use it?
It lets a coding agent build and test flows through tools instead of manually opening the Power Automate portal.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the flowstudio-power-automate plugin — 10 skills, 1 MCP server shipped together

Good fit Use it to find existing flows, build definitions, connect required services, deploy flows, and verify or test them. A reachable FlowStudio server and valid JWT are required.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ninihen1/power-automate-mcp-skills/flowstudio-power-automate-build
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add ninihen1/power-automate-mcp-skills --skill flowstudio-power-automate-build
Clone the repo
git clone --depth 1 https://github.com/ninihen1/power-automate-mcp-skills

Made for: Claude Code.

Or install flowstudio-power-automate, the plugin that ships this one along with the rest of its 10 skills, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for flowstudio-power-automate-build

README.md
[![agentmods](https://agentmods.dev/badge/skills/ninihen1/power-automate-mcp-skills/flowstudio-power-automate-build/github.svg)](https://agentmods.dev/skills/ninihen1/power-automate-mcp-skills/flowstudio-power-automate-build)
Your own site
<a href="https://agentmods.dev/skills/ninihen1/power-automate-mcp-skills/flowstudio-power-automate-build"><img src="https://agentmods.dev/badge/skills/ninihen1/power-automate-mcp-skills/flowstudio-power-automate-build/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for flowstudio-power-automate-build

Your own site · 80×15
<a href="https://agentmods.dev/skills/ninihen1/power-automate-mcp-skills/flowstudio-power-automate-build"><img src="https://agentmods.dev/badge/skills/ninihen1/power-automate-mcp-skills/flowstudio-power-automate-build.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 127 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,756 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00127 $0.04756
Opus 5 $0.00063 $0.02378
Sonnet 5 $0.00025 $0.00951
Haiku 4.5 $0.00013 $0.00476

Measured 7d ago against content hash 87ee302a0ef3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

flowstudio-power-automate-build scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

import json, urllib.request
Origin

This is a copy

100% identical to flowstudio-power-automate-build — 44 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

awesome-copilot/skills/flowstudio-power-automate-build/SKILL.md · 499 lines

How it starts

The opening of the file, as written. The whole thing — 499 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Build & Deploy Power Automate Flows with FlowStudio MCP

Step-by-step guide for constructing and deploying Power Automate cloud flows programmatically through the FlowStudio MCP server.

Prerequisite: A FlowStudio MCP server must be reachable with a valid JWT. See the flowstudio-power-automate-mcp skill for connection setup. Subscribe at https://mcp.flowstudio.app

Workflow:

  1. Load current build tools.
  2. Check for an existing flow.
  3. Resolve connection references.
  4. Build the definition.
  5. Deploy.
  6. Verify.
  7. Test.

Source of Truth

Always call list_skills / tool_search first to confirm available tool names and parameter schemas. Tool names and parameters may change between server versions. This skill covers response shapes, behavioral notes, and build patterns — things tool schemas cannot tell you. If this document disagrees with tool_search or a real API response, the API wins.


Python Helper

import json, urllib.request

MCP_URL   = "https://mcp.flowstudio.app/mcp"
MCP_TOKEN = "<YOUR_JWT_TOKEN>"

def mcp(tool, **kwargs):
    payload = json.dumps({"jsonrpc": "2.0", "id": 1, "method": "tools/call",
                          "params": {"name": tool, "arguments": kwargs}}).encode()
    req = urllib.request.Request(MCP_URL, data=payload,
        headers={"x-api-key": MCP_TOKEN, "Content-Type": "application/json",
                 "User-Agent": "FlowStudio-MCP/1.0"})
    try:
        resp = urllib.request.urlopen(req, timeout=120)
    except urllib.error.HTTPError as e:
        body = e.read().decode("utf-8", errors="replace")
        raise RuntimeError(f"MCP HTTP {e.code}: {body[:200]}") from e
    raw = json.loads(resp.read())
    if "error" in raw:
        raise RuntimeError(f"MCP error: {json.dumps(raw['error'])}")
    return json.loads(raw["result"]["content"][0]["text"])

ENV = "<environment-id>"  # e.g. Default-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx

0. Load the Current Build Tools

For a brand-new flow, load the server's create-flow bundle. For editing an existing flow, load build-flow. This keeps the agent aligned with the MCP server's current schema before constructing JSON.

Read the full file on GitHub · 499 lines

Files

What ships with it

6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago Changed · -7 lines 87ee302a0ef3
  2. 12d ago First seen · 506 lines · 127 tokens per session scan A 91490596824e

Subscribe to this mod's changes

flowstudio-power-automate-build is a skill published in the GitHub repository ninihen1/power-automate-mcp-skills (32 stars, last pushed 8d ago), licensed MIT. It adds 127 tokens to every session and 4,756 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). It is 100% identical to flowstudio-power-automate-build, differing in 44 lines, and is treated as a copy.