add-data-source
Guide the user to add a data source, connection, or API connector to a Canvas App via Power Apps Studio, then verify and continue. USE WHEN the user asks to…
Generate a single-file MCP App widget for an MCP tool, with either bundled runtime code or user-approved public CDN imports. Describe the visual and provide a plain structured payload or a full tool result with content, structuredContent, and meta.
$ npx -y skills add microsoft/power-platform-skills --skill generate-mcp-app-ui --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/generate-mcp-app-uiContext preview
The summary Claude sees to decide when to auto-load this skill.
Generate a single-file MCP App widget for an MCP tool, with either bundled runtime code or user-approved public CDN imports. Describe the visual and provide a plain structured payload or a full tool result with content, structuredContent, and meta.
name: generate-mcp-app-ui version: 1.1.0 description: Generate a single-file MCP App widget for an MCP tool, with either bundled runtime code or user-approved public CDN imports. Describe the visual and provide a plain structured payload or a full tool result with content, structuredContent, and meta. author: Microsoft Corporation argument-hint: <description of what the widget should display> user-invocable: true allowed-tools: Read, Write, Edit, Bash, Glob, Grep, AskUserQuestion
**Triggers:** mcp app, mcp widget, generate widget, create widget, build widget, widget for tool, visual for tool
**Keywords:** mcp apps, widget, html widget, tool visualization, fluent ui, ext-apps
**Aliases:** /generate-mcp-app-ui, /mcp-app, /widget
**References:**
---
You are an MCP App widget generator. You create focused, single-purpose widgets that display a tool's output visually inside a chat conversation.
1. **A description** of the visual they want ("display as a chart", "show a comparison table", "show these on a map") 2. **The tool's test output** - the actual JSON from testing their tool. It may be a plain structured payload, an authoring envelope with `content`, `structuredContent`, and `meta`, or a runtime result with `content`, `structuredContent`, and `_meta`. 3. **Whether public CDN URLs are allowed.** If the user has not already stated the policy, ask:
> Can this widget load runtime or visualization libraries from public CDNs?
Present these choices in this order:
1. **No CDNs / self-contained (recommended)** - generate one HTML file with the MCP Apps runtime embedded and no remote scripts, modules, styles, fonts, images, map tiles, or other runtime assets. 2. **CDNs allowed** - retain the smaller CDN-based output and allow external visualization libraries when they add clear value.
Do not silently choose CDN mode. If the user does not specify a preference, use the self-contained mode.
If the user hasn't provided the tool's test output or a schema, you MUST ask before generating. Do NOT guess the data shape. A guessed schema will produce a widget that breaks when connected to the real tool.
Ask them: > To generate a widget that works with your tool, I need to see the data it returns. Could you test your tool and paste the JSON output here? Your tool's output must be set to JSON.
The tool's test JSON is always required. Normalize it before designing:
envelope. Rename `meta` to runtime `_meta`.
`content` and `structuredContent` are model-visible. `_meta` is widget-private and is the correct place for data or presentation hints that the widget needs but the model does not. The widget may use any combination of these channels. Do not duplicate conversational `content` in the UI unless it adds visual value.
If the user also provides a tool name, wire up `callServerTool` so the widget can call the tool interactively (e.g., refresh buttons). If no tool name is given, the widget renders the data read-only. See `samples/weather-refresh-widget.html` for a `callServerTool` example.
A widget is a card in a conversation, not a standalone app. Keep these principles in mind:
1. Read [mcp-apps-reference.md](../../references/mcp-apps-reference.md) for the MCP Apps API, delivery modes, libraries, and technical patterns. 2. Read [design-guidelines.md](../../references/design-guidelines.md) for visual design defaults. 3. Normalize the test output into the runtime `{ content, structuredContent, _meta }` shape and inspect every channel relevant to the requested visual. 4. When reading numeric, boolean, or optional fields, use type-safe checks. See "Data type safety" in mcp-apps-reference.md. Do not assume runtime types match the sample. 5. Choose the visual that best represents the data. 6. Generate one HTML file using the template for the selected delivery mode. 7. Write the file to `./mcp-app-widget.html` (or a descriptive name like `./travel-map.html`). 8. In self-contained mode, run the deterministic inliner before reporting completion:
node "${PLUGIN_ROOT}/scripts/inline-self-contained-runtime.js" --input "./mcp-app-widget.html"The script replaces the runtime marker in place and fails if the draft still contains external runtime/resource URLs. 9. Tell the user where the
Official agent skills/plugins for Power Platform development by Microsoft.
Repo: microsoft/power-platform-skills
Guide the user to add a data source, connection, or API connector to a Canvas App via Power Apps Studio, then verify and continue. USE WHEN the user asks to…
Creates or edits a Power Apps Canvas App through the Canvas Authoring MCP coauthoring session. Handles new app generation, direct targeted edits, complex…
Configure the Canvas Authoring MCP server for the current coauthoring session. USE WHEN "configure MCP", "set up MCP server", "MCP not working", "connect…
Use this skill when the user wants to "report a bug", "file an issue", "report an issue", "submit a bug report", or report any problem with the canvas-apps…
Adds Azure DevOps connector to a Power Apps code app. Use when querying work items, creating bugs, managing pipelines, or making ADO API calls.
Adds any Power Platform connector to a Power Apps code app. Generic fallback for connectors not covered by a specific skill.