power-automate-mcp
Enables interaction with Microsoft Power Automate cloud flows via Azure CLI, allowing management of flows, triggers, runs, and connections.
README
power-automate-mcp
An MCP server for Microsoft Power Automate (cloud flows), driven entirely by the Azure CLI (az rest). It is the Power Automate sibling of microsoft-planner-mcp and uses the same azRest pattern.
Why az rest?
The Azure CLI can mint tokens for both because you authorize as yourself acting on your own flows. Every call goes through az rest, which is CAE (conditional-access aware), so the only prerequisite is a logged-in Azure CLI:
az login
Build
npm install
npm run build # tsc -> dist/index.js
Register with Claude Code
Either add a project-scoped .mcp.json:
{
"mcpServers": {
"power-automate": {
"type": "stdio",
"command": "node",
"args": ["/path/to/power-automate-mcp/dist/index.js"],
"env": { "POWER_AUTOMATE_ENV": "<your-default-environment-id>" }
}
}
}
…or globally with the CLI:
claude mcp add power-automate -s user -- node /path/to/power-automate-mcp/dist/index.js
POWER_AUTOMATE_ENV is optional: set it to a default environment id so the flow tools can be called without repeating it. Discover ids with list-environments.
Tools
Environments
list-environments— all environments you can access (usenameas theenvironmentarg)
Flows
list-flows— flows in an environment (name, display name, state)get-flow— full flow record (definition + connectionReferences)get-flow-definition— just the workflow definition (triggers + actions)create-flow— create a flow from a definition (+ optional connectionReferences)update-flow— PATCH a flow's fullpropertiesenable-flow/disable-flow— start / stop a flow's triggersdelete-flow— delete a flow
Triggers / on-demand runs
list-flow-triggers— a flow's triggers (name + type)run-flow— trigger a flow on demand (manualorRecurrence, etc.)
Run history / diagnostics
list-runs— recent runs (status, start/end, error) — a health probeget-run— one run's full recordlist-run-actions— per-action results + inputs/outputs SAS links
Connections
list-connections— connector connections (ids to buildconnectionReferences)
Notes
- The flow internal
nameis a GUID (fromlist-flows), not the display name. create-flow/update-flowtake the definition / properties as JSON strings (the Logic Apps workflow JSON is too freeform for a strict schema). A typical edit is:get-flow→ tweakproperties→update-flow.connectionReferencesmust bind to existing connector connections — the API will not mint OAuth connections for you. Connector-less flows (recurrence + HTTP) need none.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.