MCP Servers

A collection of Model Context Protocol servers, templates, tools and more.

P
Power Automate MCP Skills

GitHub Copilot agent skills for Power Automate via FlowStudio MCP — build, debug, and operate cloud flows programmatically

Created 2/26/2026
Updated about 9 hours ago
Repository documentation and setup instructions

FlowStudio MCP — GitHub Copilot Agent Skills

GitHub Copilot agent skills for FlowStudio, a Power Automate MCP (Model Context Protocol) service that lets AI agents read, modify, deploy, debug, and monitor Power Automate cloud flows programmatically.

Skills

| Skill | Description | |---|---| | power-automate-mcp | Connect to and operate Power Automate cloud flows — list flows, read definitions, check runs, resubmit, cancel | | power-automate-debug | Step-by-step diagnostic process for investigating failing flows | | power-automate-build | Build, scaffold, and deploy Power Automate flow definitions from scratch |

Each skill is a self-contained folder with a SKILL.md instruction file and bundled references/ assets, following the Agent Skills specification used by github/awesome-copilot.

Prerequisites

  • A FlowStudio MCP subscription (or compatible Power Automate MCP server)
  • MCP endpoint: https://mcp.flowstudio.app/mcp (same for all subscribers)
  • API key / JWT token (passed as x-api-key header — not Bearer)

Quick Start

  1. Copy the skill folder(s) you need into your project's .github/skills/ directory (or wherever your agent discovers skills)
  2. Configure your JWT token (obtain from flowstudio.app)
  3. Ask your AI agent to "list my Power Automate flows" — the skill will guide it

Repository Structure

skills/
  power-automate-mcp/       ← core connection & operation skill
    SKILL.md
    references/
      TOOL-REFERENCE.md
      ACTION-TYPES.md
      CONNECTION-REFERENCES.md
  power-automate-debug/     ← debug workflow skill
    SKILL.md
    references/
      COMMON-ERRORS.md
      DEBUG-WORKFLOW.md
  power-automate-build/     ← build & deploy skill
    SKILL.md
    references/
      ACTION-PATTERNS-CORE.md
      ACTION-PATTERNS-DATA.md
      ACTION-PATTERNS-CONNECTORS.md
      FLOW-SCHEMA.md
      TRIGGER-TYPES.md
README.md                   ← this file
LICENSE                     ← MIT

Contributing

Contributions welcome! Each skill folder must contain at minimum a SKILL.md with the required frontmatter format. See the existing skills for examples.

License

MIT

Quick Setup
Installation guide for this server

Installation Command (package not published)

git clone https://github.com/ninihen1/power-automate-mcp-skills
Manual Installation: Please check the README for detailed setup instructions and any additional dependencies required.

Cursor configuration (mcp.json)

{ "mcpServers": { "ninihen1-power-automate-mcp-skills": { "command": "git", "args": [ "clone", "https://github.com/ninihen1/power-automate-mcp-skills" ] } } }