powerautomate-mcp 0.11.1 → 0.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +136 -136
- package/dist/index.js +1398 -917
- package/dist/index.js.map +1 -1
- package/package.json +21 -10
- package/scripts/generate-tool-docs.ts +223 -0
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Power Automate MCP Server
|
|
2
2
|
|
|
3
|
+
[](https://github.com/rcb0727/powerautomate-mcp/actions/workflows/ci.yml)
|
|
4
|
+
|
|
3
5
|
**Docs:** **Overview** · [Installation & Upgrading](https://github.com/rcb0727/powerautomate-mcp-docs/blob/main/INSTALL.md) · [Changelog](https://github.com/rcb0727/powerautomate-mcp-docs/blob/main/CHANGELOG.md) · [Report an issue](https://github.com/rcb0727/powerautomate-mcp-docs/issues)
|
|
4
6
|
|
|
5
7
|
An MCP (Model Context Protocol) server for Microsoft Power Automate. Create, manage, and deploy Power Automate flows using natural language.
|
|
@@ -97,19 +99,23 @@ If you prefer to create the app registration manually:
|
|
|
97
99
|
3. After creation, go to **Authentication** and enable:
|
|
98
100
|
- **Allow public client flows**: Yes
|
|
99
101
|
|
|
100
|
-
4. Go to **API permissions** > **Add a permission** and add
|
|
102
|
+
4. Go to **API permissions** > **Add a permission** and add only the permissions for the tool surfaces you want to enable. The setup wizard offers presets for **All tool surfaces**, **Power Automate only**, **Power Automate + connectors**, **Dataverse**, **Power Pages**, and **Custom**.
|
|
101
103
|
|
|
102
104
|
| API | Permission | Type | Used For |
|
|
103
105
|
|-----|------------|------|----------|
|
|
104
|
-
| Microsoft Graph | `User.Read` | Delegated | User profile |
|
|
105
|
-
| Microsoft Graph | `Sites.ReadWrite.All` | Delegated | SharePoint sites, lists, files |
|
|
106
|
-
| Microsoft Graph | `Files.ReadWrite.All` | Delegated | OneDrive/SharePoint file operations |
|
|
107
106
|
| Power Automate (Flow Service) | `Flows.Read.All` | Delegated | Read flows |
|
|
108
107
|
| Power Automate (Flow Service) | `Flows.Manage.All` | Delegated | Create/update/delete flows |
|
|
109
108
|
| Power Automate (Flow Service) | `Activity.Read.All` | Delegated | Flow run history |
|
|
110
109
|
| Power Automate (Flow Service) | `Approvals.Manage.All` | Delegated | Approval management |
|
|
111
|
-
|
|
|
112
|
-
|
|
|
110
|
+
| Microsoft Graph | `User.Read`, `Sites.ReadWrite.All`, `Files.ReadWrite.All` | Delegated | Optional: SharePoint, OneDrive, and Excel helpers |
|
|
111
|
+
| PowerApps Service | `User` | Delegated | Optional: connections, connector metadata, custom connectors, and Power Apps maker APIs |
|
|
112
|
+
| BAP Admin API | `user_impersonation` | Delegated | Optional: admin tools, Dataverse URL discovery, and Power Pages configuration |
|
|
113
|
+
| Dynamics CRM | `user_impersonation` | Delegated | Optional: Dataverse table/row CRUD and Power Pages configuration |
|
|
114
|
+
| Power Platform API | delegated permission | Delegated | Optional: Power Pages **site management** (Tier 2 — see note below) |
|
|
115
|
+
|
|
116
|
+
> **Least privilege:** Power Automate-only setups need only the Flow Service permissions. Skipped feature scopes are saved in `features.enabled`, hidden from the advertised MCP tool list, and skipped by `--doctor` / `--validate`.
|
|
117
|
+
|
|
118
|
+
> **Dataverse and admin tools** require the BAP Admin API delegated permission (appId `0e0bf3cc-3078-4fd4-9ef3-cb6dc0245b10`). Without it, the server cannot resolve the real Dataverse org URL and falls back to a guessed `*.crm.dynamics.com` hostname that often fails DNS.
|
|
113
119
|
|
|
114
120
|
> **Power Pages site-management tools (Tier 2)** call `https://api.powerplatform.com` and need the "Power Platform API" delegated permission (appId `8578e004-a5c6-46e7-913e-12f58912df43`). It is **not** added by the automatic `--setup` app creation because that API exposes only feature-scoped permissions and the auto-creator can't safely guess the scope. Add it manually here if you want Tier 2; the Power Pages **config** tools (Dataverse) work without it. After adding, re-run `--setup` — the wizard reports whether the Power Platform API authorized.
|
|
115
121
|
|
|
@@ -144,6 +150,7 @@ powerautomate-mcp [options]
|
|
|
144
150
|
|----------|-------------|
|
|
145
151
|
| `PA_MCP_CLIENT_ID` | Microsoft Entra app client ID (overrides config file) |
|
|
146
152
|
| `PA_CONFIG_PATH` | Custom path to config.json |
|
|
153
|
+
| `PA_MCP_HTTP_TOKEN` | With `--http`: require `Authorization: Bearer <token>` on every MCP request |
|
|
147
154
|
|
|
148
155
|
---
|
|
149
156
|
|
|
@@ -209,6 +216,7 @@ What connectors are available for working with SharePoint?
|
|
|
209
216
|
What parameters does the "Send an email (V2)" action need?
|
|
210
217
|
```
|
|
211
218
|
|
|
219
|
+
<!-- TOOLS-TABLE:BEGIN — generated by `npm run docs:tools`, do not edit by hand -->
|
|
212
220
|
## Available Tools (121 total)
|
|
213
221
|
|
|
214
222
|
> Every tool the server exposes, grouped by service. All 121 are listed here.
|
|
@@ -218,17 +226,17 @@ What parameters does the "Send an email (V2)" action need?
|
|
|
218
226
|
|
|
219
227
|
| Tool | Description |
|
|
220
228
|
|------|-------------|
|
|
221
|
-
| `list_flows` | List Power Automate flows in an environment |
|
|
222
|
-
| `get_flow` | Get the complete definition of a Power Automate flow including triggers, actions, connection
|
|
223
|
-
| `create_flow` | Create a new Power Automate flow |
|
|
224
|
-
| `update_flow` | Update an existing Power Automate flow |
|
|
225
|
-
| `delete_flow` | Delete a Power Automate flow permanently |
|
|
226
|
-
| `toggle_flow` | Enable or disable a Power Automate flow |
|
|
227
|
-
| `clone_flow` | Clone an existing Power Automate flow to create a copy with a new name |
|
|
228
|
-
| `export_flow` | Export a flow as a package |
|
|
229
|
-
| `share_flow` | Share a flow with users, groups, or service principals |
|
|
230
|
-
| `get_flow_permissions` | Get the list of users, groups, and service principals that have access to a flow |
|
|
231
|
-
| `list_flow_versions` | List all versions of a flow |
|
|
229
|
+
| `list_flows` | List Power Automate flows in an environment. Returns flow names, IDs, state (Started/Stopped), last… |
|
|
230
|
+
| `get_flow` | Get the complete definition of a Power Automate flow including triggers, actions, connection referen… |
|
|
231
|
+
| `create_flow` | Create a new Power Automate flow. Provide a trigger, actions, and connection references. Use search_… |
|
|
232
|
+
| `update_flow` | Update an existing Power Automate flow. Three update modes: (1) full replace — pass 'actions' to rep… |
|
|
233
|
+
| `delete_flow` | Delete a Power Automate flow permanently. This action cannot be undone. You must set confirm=true to… |
|
|
234
|
+
| `toggle_flow` | Enable or disable a Power Automate flow. Use 'start' to enable a stopped flow or 'stop' to disable a… |
|
|
235
|
+
| `clone_flow` | Clone an existing Power Automate flow to create a copy with a new name. Optionally update connection… |
|
|
236
|
+
| `export_flow` | Export a flow as a package. Returns the flow definition and metadata that can be used to import into… |
|
|
237
|
+
| `share_flow` | Share a flow with users, groups, or service principals. Grant them either 'CanEdit' (can modify the… |
|
|
238
|
+
| `get_flow_permissions` | Get the list of users, groups, and service principals that have access to a flow. Shows their role (… |
|
|
239
|
+
| `list_flow_versions` | List all versions of a flow. Each version represents a saved state of the flow definition. Use this… |
|
|
232
240
|
|
|
233
241
|
</details>
|
|
234
242
|
|
|
@@ -237,15 +245,15 @@ What parameters does the "Send an email (V2)" action need?
|
|
|
237
245
|
|
|
238
246
|
| Tool | Description |
|
|
239
247
|
|------|-------------|
|
|
240
|
-
| `test_flow` | Test a Power Automate flow with guided feedback |
|
|
241
|
-
| `run_flow` | Trigger a Power Automate flow to run immediately |
|
|
242
|
-
| `get_runs` | Get the execution history of a Power Automate flow |
|
|
243
|
-
| `get_run_actions` | Get detailed action-level information for a flow run |
|
|
244
|
-
| `get_run_action_repetitions` | Get iteration-level details for a for_each or do_until loop action in a flow run |
|
|
245
|
-
| `diagnose_flow` | Diagnose issues with a Power Automate flow |
|
|
246
|
-
| `validate_flow` | Validate a Power Automate flow definition for errors |
|
|
247
|
-
| `resubmit_run` | Resubmit a failed or cancelled flow run |
|
|
248
|
-
| `cancel_run` | Cancel a currently running flow execution |
|
|
248
|
+
| `test_flow` | Test a Power Automate flow with guided feedback. This tool: 1. Gets the flow's expected input schema… |
|
|
249
|
+
| `run_flow` | Trigger a Power Automate flow to run immediately. Works with any trigger type (manual, scheduled, ev… |
|
|
250
|
+
| `get_runs` | Get the execution history of a Power Automate flow. Shows run times, status (Succeeded/Failed/Runnin… |
|
|
251
|
+
| `get_run_actions` | Get detailed action-level information for a flow run. Shows each action's status, timing, inputs/out… |
|
|
252
|
+
| `get_run_action_repetitions` | Get iteration-level details for a for_each or do_until loop action in a flow run. Shows which iterat… |
|
|
253
|
+
| `diagnose_flow` | Diagnose issues with a Power Automate flow. Analyzes recent runs, identifies failures, and provides… |
|
|
254
|
+
| `validate_flow` | Validate a Power Automate flow definition for errors. Can validate either an existing flow by ID or… |
|
|
255
|
+
| `resubmit_run` | Resubmit a failed or cancelled flow run. This will re-execute the flow with the same trigger inputs.… |
|
|
256
|
+
| `cancel_run` | Cancel a currently running flow execution. Use this to stop a flow that is taking too long or runnin… |
|
|
249
257
|
|
|
250
258
|
</details>
|
|
251
259
|
|
|
@@ -254,11 +262,11 @@ What parameters does the "Send an email (V2)" action need?
|
|
|
254
262
|
|
|
255
263
|
| Tool | Description |
|
|
256
264
|
|------|-------------|
|
|
257
|
-
| `plan_flow` | Interactive flow planning wizard |
|
|
258
|
-
| `build_flow` | Build a Power Automate flow from a description |
|
|
259
|
-
| `get_expression_help` | Get help with Power Automate expressions |
|
|
260
|
-
| `search_connectors` | Search for Power Automate connectors by name, description, or category |
|
|
261
|
-
| `get_action_schema` | Get the schema and parameters for a connector's actions/triggers |
|
|
265
|
+
| `plan_flow` | Interactive flow planning wizard. Call this FIRST when user wants to create or build a flow. IMPORTA… |
|
|
266
|
+
| `build_flow` | Build a Power Automate flow from a description. RECOMMENDED: Use plan_flow FIRST to gather requireme… |
|
|
267
|
+
| `get_expression_help` | Get help with Power Automate expressions. Provides: - Common functions reference by category - Conte… |
|
|
268
|
+
| `search_connectors` | Search for Power Automate connectors by name, description, or category. Returns matching connectors… |
|
|
269
|
+
| `get_action_schema` | Get the schema and parameters for a connector's actions/triggers. Use search_connectors first to fin… |
|
|
262
270
|
|
|
263
271
|
</details>
|
|
264
272
|
|
|
@@ -267,14 +275,14 @@ What parameters does the "Send an email (V2)" action need?
|
|
|
267
275
|
|
|
268
276
|
| Tool | Description |
|
|
269
277
|
|------|-------------|
|
|
270
|
-
| `list_connections` | List all connections in an environment |
|
|
271
|
-
| `list_custom_connectors` | List all custom connectors in the environment |
|
|
272
|
-
| `get_custom_connector` | Get detailed information about a custom connector including its OpenAPI definition and all
|
|
273
|
-
| `create_custom_connector` | Create a custom connector for any REST API |
|
|
274
|
-
| `update_custom_connector` | Update a custom connector |
|
|
275
|
-
| `delete_custom_connector` | Delete a custom connector |
|
|
276
|
-
| `plan_custom_connector` | Get guidance on creating a custom connector |
|
|
277
|
-
| `import_openapi_connector` | Create a custom connector by importing an OpenAPI/Swagger specification |
|
|
278
|
+
| `list_connections` | List all connections in an environment. Shows connection names, statuses (Connected/Error), connecto… |
|
|
279
|
+
| `list_custom_connectors` | List all custom connectors in the environment. Shows connector names, IDs, and operation counts. |
|
|
280
|
+
| `get_custom_connector` | Get detailed information about a custom connector including its OpenAPI definition and all operation… |
|
|
281
|
+
| `create_custom_connector` | Create a custom connector for any REST API. Define the base URL, authentication, and operations. Eac… |
|
|
282
|
+
| `update_custom_connector` | Update a custom connector. Add or remove operations, or change the display name and description. |
|
|
283
|
+
| `delete_custom_connector` | Delete a custom connector. Requires confirm=true to proceed. |
|
|
284
|
+
| `plan_custom_connector` | Get guidance on creating a custom connector. Describes what information you need to gather about you… |
|
|
285
|
+
| `import_openapi_connector` | Create a custom connector by importing an OpenAPI/Swagger specification. Provide the full spec and a… |
|
|
278
286
|
|
|
279
287
|
</details>
|
|
280
288
|
|
|
@@ -283,9 +291,9 @@ What parameters does the "Send an email (V2)" action need?
|
|
|
283
291
|
|
|
284
292
|
| Tool | Description |
|
|
285
293
|
|------|-------------|
|
|
286
|
-
| `list_approvals` | List pending approvals in the environment |
|
|
287
|
-
| `list_approvals_dataverse` | List pending approval requests from Dataverse |
|
|
288
|
-
| `respond_approval` | Respond to a pending approval request |
|
|
294
|
+
| `list_approvals` | List pending approvals in the environment. Shows approval requests that are waiting for a response. |
|
|
295
|
+
| `list_approvals_dataverse` | List pending approval requests from Dataverse. More reliable than the Flow API for approvals. Shows… |
|
|
296
|
+
| `respond_approval` | Respond to a pending approval request. Use 'Approve' to approve or 'Reject' to reject the request. |
|
|
289
297
|
|
|
290
298
|
</details>
|
|
291
299
|
|
|
@@ -294,13 +302,13 @@ What parameters does the "Send an email (V2)" action need?
|
|
|
294
302
|
|
|
295
303
|
| Tool | Description |
|
|
296
304
|
|------|-------------|
|
|
297
|
-
| `list_dataverse_tables` | List Dataverse tables (entities) in the environment |
|
|
298
|
-
| `get_dataverse_table` | Get detailed metadata for a Dataverse table including all column definitions |
|
|
299
|
-
| `query_dataverse_rows` | Query rows from a Dataverse table with OData filtering, selecting, and ordering |
|
|
300
|
-
| `get_dataverse_row` | Get a single Dataverse row by its ID |
|
|
301
|
-
| `create_dataverse_row` | Create a new row in a Dataverse table |
|
|
302
|
-
| `update_dataverse_row` | Update an existing Dataverse row |
|
|
303
|
-
| `delete_dataverse_row` | Delete a Dataverse row permanently |
|
|
305
|
+
| `list_dataverse_tables` | List Dataverse tables (entities) in the environment. Returns table names, entity set names, and whet… |
|
|
306
|
+
| `get_dataverse_table` | Get detailed metadata for a Dataverse table including all column definitions. Provide the table's lo… |
|
|
307
|
+
| `query_dataverse_rows` | Query rows from a Dataverse table with OData filtering, selecting, and ordering. Use list_dataverse_… |
|
|
308
|
+
| `get_dataverse_row` | Get a single Dataverse row by its ID. Returns all fields or selected fields for the specified row. |
|
|
309
|
+
| `create_dataverse_row` | Create a new row in a Dataverse table. Use get_dataverse_table first to see available columns and re… |
|
|
310
|
+
| `update_dataverse_row` | Update an existing Dataverse row. Only include fields you want to change. The row must exist. |
|
|
311
|
+
| `delete_dataverse_row` | Delete a Dataverse row permanently. This action cannot be undone. You must set confirm=true to proce… |
|
|
304
312
|
|
|
305
313
|
</details>
|
|
306
314
|
|
|
@@ -309,17 +317,17 @@ What parameters does the "Send an email (V2)" action need?
|
|
|
309
317
|
|
|
310
318
|
| Tool | Description |
|
|
311
319
|
|------|-------------|
|
|
312
|
-
| `search_sharepoint_sites` | Search for SharePoint sites by name or keyword |
|
|
313
|
-
| `get_sharepoint_site` | Get a SharePoint site by its ID or by hostname and path |
|
|
314
|
-
| `list_sharepoint_lists` | List all lists and libraries in a SharePoint site |
|
|
315
|
-
| `get_sharepoint_list_columns` | Get column definitions for a SharePoint list |
|
|
316
|
-
| `list_sharepoint_items` | Get items from a SharePoint list with optional filtering and sorting |
|
|
317
|
-
| `create_sharepoint_item` | Create a new item in a SharePoint list |
|
|
318
|
-
| `update_sharepoint_item` | Update an existing SharePoint list item |
|
|
319
|
-
| `delete_sharepoint_item` | Delete a SharePoint list item permanently |
|
|
320
|
-
| `list_sharepoint_files` | List files in a SharePoint document library |
|
|
321
|
-
| `upload_sharepoint_file` | Upload a file to a SharePoint document library |
|
|
322
|
-
| `get_sharepoint_file_content` | Download a file's content from a SharePoint document library |
|
|
320
|
+
| `search_sharepoint_sites` | Search for SharePoint sites by name or keyword. Returns site IDs, names, and URLs. Use the site ID i… |
|
|
321
|
+
| `get_sharepoint_site` | Get a SharePoint site by its ID or by hostname and path. Returns site details including name, URL, a… |
|
|
322
|
+
| `list_sharepoint_lists` | List all lists and libraries in a SharePoint site. Returns list IDs, names, and types. Use the list… |
|
|
323
|
+
| `get_sharepoint_list_columns` | Get column definitions for a SharePoint list. Shows column names, types, and whether they are requir… |
|
|
324
|
+
| `list_sharepoint_items` | Get items from a SharePoint list with optional filtering and sorting. Returns item IDs, field values… |
|
|
325
|
+
| `create_sharepoint_item` | Create a new item in a SharePoint list. Use get_sharepoint_list_columns first to see available field… |
|
|
326
|
+
| `update_sharepoint_item` | Update an existing SharePoint list item. Only include fields you want to change. |
|
|
327
|
+
| `delete_sharepoint_item` | Delete a SharePoint list item permanently. This action cannot be undone. You must set confirm=true t… |
|
|
328
|
+
| `list_sharepoint_files` | List files in a SharePoint document library. Use list_sharepoint_lists first to find document librar… |
|
|
329
|
+
| `upload_sharepoint_file` | Upload a file to a SharePoint document library. Simple upload supports files up to 4MB. Provide the… |
|
|
330
|
+
| `get_sharepoint_file_content` | Download a file's content from a SharePoint document library. Returns base64-encoded content for tex… |
|
|
323
331
|
|
|
324
332
|
</details>
|
|
325
333
|
|
|
@@ -328,8 +336,8 @@ What parameters does the "Send an email (V2)" action need?
|
|
|
328
336
|
|
|
329
337
|
| Tool | Description |
|
|
330
338
|
|------|-------------|
|
|
331
|
-
| `search_excel_files` | Search for Excel files in OneDrive by name |
|
|
332
|
-
| `inspect_excel_file` | Inspect an Excel file to find tables and columns |
|
|
339
|
+
| `search_excel_files` | Search for Excel files in OneDrive by name. Returns matching files with their IDs and paths. |
|
|
340
|
+
| `inspect_excel_file` | Inspect an Excel file to find tables and columns. Use search_excel_files first to find the file ID. |
|
|
333
341
|
|
|
334
342
|
</details>
|
|
335
343
|
|
|
@@ -338,19 +346,19 @@ What parameters does the "Send an email (V2)" action need?
|
|
|
338
346
|
|
|
339
347
|
| Tool | Description |
|
|
340
348
|
|------|-------------|
|
|
341
|
-
| `list_powerapps` | List Power Apps canvas apps in an environment |
|
|
342
|
-
| `list_canvas_apps` | List Power Apps canvas apps stored in Dataverse |
|
|
343
|
-
| `get_powerapp` | Get detailed information about a Power App including owner, connections, and app URIs |
|
|
344
|
-
| `list_model_driven_apps` | List model-driven apps from Dataverse |
|
|
345
|
-
| `publish_powerapp` | Publish a Power App to make the latest version available to users |
|
|
346
|
-
| `get_powerapp_versions` | Get version history for a Power App |
|
|
347
|
-
| `restore_powerapp_version` | Restore a Power App to a previous version |
|
|
348
|
-
| `get_powerapp_permissions` | Get the list of users, groups, and service principals that have access to a Power App |
|
|
349
|
-
| `share_powerapp` | Share a Power App with a user, group, or service principal |
|
|
350
|
-
| `unshare_powerapp` | Remove a user or group's access to a Power App |
|
|
351
|
-
| `set_powerapp_owner` | Transfer ownership of a Power App to another user |
|
|
352
|
-
| `set_powerapp_display_name` | Change the display name of a Power App |
|
|
353
|
-
| `delete_powerapp` | Delete a Power App permanently |
|
|
349
|
+
| `list_powerapps` | List Power Apps canvas apps in an environment. Returns app names, IDs, owners, and last modified dat… |
|
|
350
|
+
| `list_canvas_apps` | List Power Apps canvas apps stored in Dataverse. Shows app names, versions, and status. |
|
|
351
|
+
| `get_powerapp` | Get detailed information about a Power App including owner, connections, and app URIs. |
|
|
352
|
+
| `list_model_driven_apps` | List model-driven apps from Dataverse. Requires a Dataverse-enabled environment. |
|
|
353
|
+
| `publish_powerapp` | Publish a Power App to make the latest version available to users. |
|
|
354
|
+
| `get_powerapp_versions` | Get version history for a Power App. Shows all saved versions with dates. |
|
|
355
|
+
| `restore_powerapp_version` | Restore a Power App to a previous version. |
|
|
356
|
+
| `get_powerapp_permissions` | Get the list of users, groups, and service principals that have access to a Power App. |
|
|
357
|
+
| `share_powerapp` | Share a Power App with a user, group, or service principal. Grant CanEdit or CanView permissions. |
|
|
358
|
+
| `unshare_powerapp` | Remove a user or group's access to a Power App. |
|
|
359
|
+
| `set_powerapp_owner` | Transfer ownership of a Power App to another user. Requires Power Platform admin role. |
|
|
360
|
+
| `set_powerapp_display_name` | Change the display name of a Power App. |
|
|
361
|
+
| `delete_powerapp` | Delete a Power App permanently. This action cannot be undone. Set confirm=true to proceed. |
|
|
354
362
|
|
|
355
363
|
</details>
|
|
356
364
|
|
|
@@ -359,10 +367,10 @@ What parameters does the "Send an email (V2)" action need?
|
|
|
359
367
|
|
|
360
368
|
| Tool | Description |
|
|
361
369
|
|------|-------------|
|
|
362
|
-
| `list_powerapps_admin` | List all Power Apps in an environment as admin |
|
|
363
|
-
| `get_powerapp_admin` | Get Power App details as admin |
|
|
364
|
-
| `delete_powerapp_admin` | Delete a Power App as admin |
|
|
365
|
-
| `quarantine_powerapp` | Quarantine or unquarantine a Power App |
|
|
370
|
+
| `list_powerapps_admin` | List all Power Apps in an environment as admin. Requires Power Platform admin role. |
|
|
371
|
+
| `get_powerapp_admin` | Get Power App details as admin. Requires Power Platform admin role. |
|
|
372
|
+
| `delete_powerapp_admin` | Delete a Power App as admin. Requires Power Platform admin role. Set confirm=true to proceed. |
|
|
373
|
+
| `quarantine_powerapp` | Quarantine or unquarantine a Power App. Quarantined apps cannot be launched. Requires admin role. |
|
|
366
374
|
|
|
367
375
|
</details>
|
|
368
376
|
|
|
@@ -371,13 +379,13 @@ What parameters does the "Send an email (V2)" action need?
|
|
|
371
379
|
|
|
372
380
|
| Tool | Description |
|
|
373
381
|
|------|-------------|
|
|
374
|
-
| `list_powerpages_sites` | List Power Pages sites as stored in Dataverse (the configuration plane) |
|
|
375
|
-
| `get_powerpages_site` | Get a Power Pages site's Dataverse record and detected data model (standard vs enhanced) by its
|
|
376
|
-
| `list_powerpages_components` | List configuration components of a Power Pages site (web pages, web roles, table permissions,
|
|
377
|
-
| `get_powerpages_component` | Get a single Power Pages configuration component row by its record id. siteId selects the data model |
|
|
378
|
-
| `create_powerpages_component` | Create a Power Pages configuration component (e.g. a web page or content snippet) |
|
|
379
|
-
| `update_powerpages_component` | Update a Power Pages configuration component row |
|
|
380
|
-
| `delete_powerpages_component` | Delete a Power Pages configuration component row permanently |
|
|
382
|
+
| `list_powerpages_sites` | List Power Pages sites as stored in Dataverse (the configuration plane). Returns enhanced-model site… |
|
|
383
|
+
| `get_powerpages_site` | Get a Power Pages site's Dataverse record and detected data model (standard vs enhanced) by its site… |
|
|
384
|
+
| `list_powerpages_components` | List configuration components of a Power Pages site (web pages, web roles, table permissions, conten… |
|
|
385
|
+
| `get_powerpages_component` | Get a single Power Pages configuration component row by its record id. siteId selects the data model… |
|
|
386
|
+
| `create_powerpages_component` | Create a Power Pages configuration component (e.g. a web page or content snippet). The site associat… |
|
|
387
|
+
| `update_powerpages_component` | Update a Power Pages configuration component row. Only include columns you want to change in `data`. |
|
|
388
|
+
| `delete_powerpages_component` | Delete a Power Pages configuration component row permanently. Set confirm=true to proceed. |
|
|
381
389
|
|
|
382
390
|
</details>
|
|
383
391
|
|
|
@@ -386,47 +394,43 @@ What parameters does the "Send an email (V2)" action need?
|
|
|
386
394
|
|
|
387
395
|
| Tool | Description |
|
|
388
396
|
|------|-------------|
|
|
389
|
-
| `list_powerpages_websites` | List Power Pages websites in an environment via the Power Platform management API |
|
|
390
|
-
| `get_powerpages_website` | Get a Power Pages website's hosting details (status, URL, data model) by id, via the management API |
|
|
391
|
-
| `create_powerpages_website` | Provision a new Power Pages website (management API) |
|
|
392
|
-
| `delete_powerpages_website` | Delete a Power Pages website (management API) |
|
|
393
|
-
| `restart_powerpages_website` | Restart a Power Pages website (management API) |
|
|
397
|
+
| `list_powerpages_websites` | List Power Pages websites in an environment via the Power Platform management API. Returns hosting i… |
|
|
398
|
+
| `get_powerpages_website` | Get a Power Pages website's hosting details (status, URL, data model) by id, via the management API. |
|
|
399
|
+
| `create_powerpages_website` | Provision a new Power Pages website (management API). Asynchronous — returns a tracking URL; provisi… |
|
|
400
|
+
| `delete_powerpages_website` | Delete a Power Pages website (management API). This cannot be undone. Set confirm=true to proceed. |
|
|
401
|
+
| `restart_powerpages_website` | Restart a Power Pages website (management API). Recycles the site so it picks up Dataverse config ch… |
|
|
394
402
|
|
|
395
403
|
</details>
|
|
396
404
|
|
|
397
405
|
<details>
|
|
398
406
|
<summary><strong>Environment Administration</strong> (10 tools)</summary>
|
|
399
407
|
|
|
400
|
-
> Requires **Power Platform Admin**, **Dynamics 365 Admin**, or **Global Admin** role.
|
|
401
|
-
|
|
402
408
|
| Tool | Description |
|
|
403
409
|
|------|-------------|
|
|
404
|
-
| `list_environments` | List all Power Platform environments accessible to the current user |
|
|
405
|
-
| `get_environment` | Get detailed information about a Power Platform environment including Dataverse URL, region, and SKU |
|
|
406
|
-
| `create_environment` | Create a new Power Platform environment |
|
|
407
|
-
| `delete_environment` | Delete a Power Platform environment permanently |
|
|
408
|
-
| `copy_environment` | Copy a Power Platform environment to create a new one |
|
|
409
|
-
| `reset_environment` | Reset a Power Platform environment to its initial state |
|
|
410
|
-
| `backup_environment` | Create a backup of a Power Platform environment |
|
|
411
|
-
| `restore_environment` | Restore a Power Platform environment from a backup |
|
|
412
|
-
| `list_environment_backups` | List available backups for a Power Platform environment |
|
|
413
|
-
| `get_environment_capacity` | Get capacity consumption for a specific environment |
|
|
410
|
+
| `list_environments` | List all Power Platform environments accessible to the current user. Shows environment names, IDs, r… |
|
|
411
|
+
| `get_environment` | Get detailed information about a Power Platform environment including Dataverse URL, region, and SKU… |
|
|
412
|
+
| `create_environment` | Create a new Power Platform environment. Requires admin role. |
|
|
413
|
+
| `delete_environment` | Delete a Power Platform environment permanently. This action cannot be undone. Set confirm=true. |
|
|
414
|
+
| `copy_environment` | Copy a Power Platform environment to create a new one. Set confirm=true. |
|
|
415
|
+
| `reset_environment` | Reset a Power Platform environment to its initial state. THIS DELETES ALL DATA. Set confirm=true. |
|
|
416
|
+
| `backup_environment` | Create a backup of a Power Platform environment. |
|
|
417
|
+
| `restore_environment` | Restore a Power Platform environment from a backup. Set confirm=true. |
|
|
418
|
+
| `list_environment_backups` | List available backups for a Power Platform environment. |
|
|
419
|
+
| `get_environment_capacity` | Get capacity consumption for a specific environment. |
|
|
414
420
|
|
|
415
421
|
</details>
|
|
416
422
|
|
|
417
423
|
<details>
|
|
418
424
|
<summary><strong>DLP Policies</strong> (6 tools)</summary>
|
|
419
425
|
|
|
420
|
-
> Requires **Power Platform Admin**, **Dynamics 365 Admin**, or **Global Admin** role.
|
|
421
|
-
|
|
422
426
|
| Tool | Description |
|
|
423
427
|
|------|-------------|
|
|
424
|
-
| `list_dlp_policies` | List all Data Loss Prevention (DLP) policies in the tenant |
|
|
425
|
-
| `get_dlp_policy` | Get details of a DLP policy including connector group assignments |
|
|
426
|
-
| `create_dlp_policy` | Create a new DLP policy |
|
|
427
|
-
| `update_dlp_policy` | Update an existing DLP policy |
|
|
428
|
-
| `delete_dlp_policy` | Delete a DLP policy |
|
|
429
|
-
| `get_dlp_connector_configs` | Get connector-level configurations for a DLP policy (endpoint filtering, etc.) |
|
|
428
|
+
| `list_dlp_policies` | List all Data Loss Prevention (DLP) policies in the tenant. Requires admin role. |
|
|
429
|
+
| `get_dlp_policy` | Get details of a DLP policy including connector group assignments. |
|
|
430
|
+
| `create_dlp_policy` | Create a new DLP policy. Requires admin role. |
|
|
431
|
+
| `update_dlp_policy` | Update an existing DLP policy. Requires admin role. |
|
|
432
|
+
| `delete_dlp_policy` | Delete a DLP policy. Set confirm=true to proceed. Requires admin role. |
|
|
433
|
+
| `get_dlp_connector_configs` | Get connector-level configurations for a DLP policy (endpoint filtering, etc.). |
|
|
430
434
|
|
|
431
435
|
</details>
|
|
432
436
|
|
|
@@ -435,30 +439,28 @@ What parameters does the "Send an email (V2)" action need?
|
|
|
435
439
|
|
|
436
440
|
| Tool | Description |
|
|
437
441
|
|------|-------------|
|
|
438
|
-
| `list_solutions` | List Dataverse solutions in the environment |
|
|
439
|
-
| `export_solution` | Export a Dataverse solution as a zip file (base64-encoded) |
|
|
440
|
-
| `import_solution` | Import a Dataverse solution from a base64-encoded zip file |
|
|
441
|
-
| `clone_solution` | Clone an unmanaged Dataverse solution to create a new version |
|
|
442
|
-
| `add_solution_component` | Add a component (table, flow, etc.) to an unmanaged Dataverse solution |
|
|
443
|
-
| `remove_solution_component` | Remove a component from an unmanaged Dataverse solution |
|
|
444
|
-
| `list_solution_flows` | List flows stored in Dataverse solutions |
|
|
445
|
-
| `publish_all_customizations` | Publish all pending customizations in Dataverse |
|
|
442
|
+
| `list_solutions` | List Dataverse solutions in the environment. Solutions are containers for flows, apps, and other com… |
|
|
443
|
+
| `export_solution` | Export a Dataverse solution as a zip file (base64-encoded). Requires Dataverse. |
|
|
444
|
+
| `import_solution` | Import a Dataverse solution from a base64-encoded zip file. Requires Dataverse. |
|
|
445
|
+
| `clone_solution` | Clone an unmanaged Dataverse solution to create a new version. |
|
|
446
|
+
| `add_solution_component` | Add a component (table, flow, etc.) to an unmanaged Dataverse solution. |
|
|
447
|
+
| `remove_solution_component` | Remove a component from an unmanaged Dataverse solution. |
|
|
448
|
+
| `list_solution_flows` | List flows stored in Dataverse solutions. These are 'solution-aware' flows that can be exported and… |
|
|
449
|
+
| `publish_all_customizations` | Publish all pending customizations in Dataverse. Requires Dataverse. |
|
|
446
450
|
|
|
447
451
|
</details>
|
|
448
452
|
|
|
449
453
|
<details>
|
|
450
454
|
<summary><strong>Managed Environments & Capacity</strong> (6 tools)</summary>
|
|
451
455
|
|
|
452
|
-
> Requires **Power Platform Admin**, **Dynamics 365 Admin**, or **Global Admin** role.
|
|
453
|
-
|
|
454
456
|
| Tool | Description |
|
|
455
457
|
|------|-------------|
|
|
456
|
-
| `enable_managed_environment` | Enable managed environment features |
|
|
457
|
-
| `disable_managed_environment` | Disable managed environment features |
|
|
458
|
-
| `get_managed_environment_settings` | Get the governance configuration for a managed environment |
|
|
459
|
-
| `update_managed_environment_settings` | Update governance settings for a managed environment |
|
|
460
|
-
| `get_tenant_capacity` | Get storage and API capacity usage for the tenant |
|
|
461
|
-
| `get_api_request_summary` | Get API request consumption summary for the tenant |
|
|
458
|
+
| `enable_managed_environment` | Enable managed environment features. Set confirm=true. Requires admin role. |
|
|
459
|
+
| `disable_managed_environment` | Disable managed environment features. Set confirm=true. Requires admin role. |
|
|
460
|
+
| `get_managed_environment_settings` | Get the governance configuration for a managed environment. |
|
|
461
|
+
| `update_managed_environment_settings` | Update governance settings for a managed environment. Requires admin role. |
|
|
462
|
+
| `get_tenant_capacity` | Get storage and API capacity usage for the tenant. Requires admin role. |
|
|
463
|
+
| `get_api_request_summary` | Get API request consumption summary for the tenant. Requires admin role. |
|
|
462
464
|
|
|
463
465
|
</details>
|
|
464
466
|
|
|
@@ -467,9 +469,9 @@ What parameters does the "Send an email (V2)" action need?
|
|
|
467
469
|
|
|
468
470
|
| Tool | Description |
|
|
469
471
|
|------|-------------|
|
|
470
|
-
| `list_desktop_flows` | List desktop flows (UI flows) in the environment |
|
|
471
|
-
| `list_machines` | List registered machines for desktop flows (RPA) |
|
|
472
|
-
| `list_machine_groups` | List machine groups for desktop flows |
|
|
472
|
+
| `list_desktop_flows` | List desktop flows (UI flows) in the environment. Desktop flows automate tasks on Windows or web app… |
|
|
473
|
+
| `list_machines` | List registered machines for desktop flows (RPA). Shows machine names, status, and group memberships… |
|
|
474
|
+
| `list_machine_groups` | List machine groups for desktop flows. Machine groups allow load balancing of desktop flow runs acro… |
|
|
473
475
|
|
|
474
476
|
</details>
|
|
475
477
|
|
|
@@ -478,14 +480,12 @@ What parameters does the "Send an email (V2)" action need?
|
|
|
478
480
|
|
|
479
481
|
| Tool | Description |
|
|
480
482
|
|------|-------------|
|
|
481
|
-
| `list_billing_policies` | List pay-as-you-go billing policies for the tenant |
|
|
482
|
-
| `get_billing_policy` | Get details of a specific billing policy |
|
|
483
|
-
| `list_ai_models` | List AI Builder models in the environment |
|
|
483
|
+
| `list_billing_policies` | List pay-as-you-go billing policies for the tenant. Requires admin role. |
|
|
484
|
+
| `get_billing_policy` | Get details of a specific billing policy. |
|
|
485
|
+
| `list_ai_models` | List AI Builder models in the environment. Shows model names, types, and status. |
|
|
484
486
|
|
|
485
487
|
</details>
|
|
486
|
-
|
|
487
|
-
<p align="right"><a href="#power-automate-mcp-server">↑ Back to top</a></p>
|
|
488
|
-
|
|
488
|
+
<!-- TOOLS-TABLE:END -->
|
|
489
489
|
|
|
490
490
|
## Security
|
|
491
491
|
|