npx skills add ...
npx skills add microsoft/power-platform-skills --skill generate-mcp-app-ui
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 skills add microsoft/power-platform-skills --skill generate-mcp-app-ui
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.
A description of the visual they want ("display as a chart", "show a comparison table", "show these on a map")
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.
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:
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:
structuredContent.content, structuredContent, or meta is an authoring result
envelope. Rename meta to runtime _meta._meta is already in runtime MCP result form.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:
Read mcp-apps-reference.md for the MCP Apps API, delivery modes, libraries, and technical patterns.
Read design-guidelines.md for visual design defaults.
Normalize the test output into the runtime { content, structuredContent, _meta }
shape and inspect every channel relevant to the requested visual.
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.
Choose the visual that best represents the data.
Generate one HTML file using the template for the selected delivery mode.
Write the file to ./mcp-app-widget.html (or a descriptive name like ./travel-map.html).
In self-contained mode, run the deterministic inliner before reporting completion:
The script replaces the runtime marker in place and fails if the draft still contains external runtime/resource URLs.
Tell the user where the file is and how to open it in a browser to preview.
Use this template only after the user allows public CDNs. ALL widget logic goes in a
single <script type="module"> block. Use the MCP Apps App class from the CDN.
Start from
self-contained-widget.template.html.
Keep this exact marker in <head> until the final inlining step:
The application module obtains its dependencies from the embedded runtime:
In this mode:
import declarations, remote <script src>, stylesheets, fonts, images,
iframes, media, map tiles, workers, or literal network fetch calls.<fluent-*> elements;
Fluent Web Components are intentionally not bundled.<script type="module"> application block. The inliner adds the
runtime as a classic inline script before it.If the user asks to change an existing widget ("make it more colorful", "add a chart", "make the map bigger"):
Read the existing HTML file
Make ONLY the requested change
Do not restructure the widget, add new features, or remove functionality unless asked
Preserve its existing CDN policy. For a self-contained widget, edit a temporary copy prepared with the command below, then re-run the inliner after editing. Do not hand-edit the minified runtime.
Write the updated file
<!DOCTYPE html>MCP_APPS_SELF_CONTAINED_RUNTIME, and must not load any remote runtime asset.ontoolresult and callServerTool paths. Read
widget-private metadata from runtime result._meta, never result.meta.