Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Integrates MCP App UI with host theming system. Applies host CSS variables, handles onhostcontextchanged, safe area insets, display mode detection, and fullscreen configuration.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | 2% | 0% |
| case-02 | ✗→✓ | ▲ Improved | 55% | 0% |
| case-03 | ✗→✓ | ▲ Improved | 32% | 0% |
| case-04 | ✗→✓ | ▲ Improved | 144% | 0% |
| case-05 | ✗→✓ | ▲ Improved | 40% | 0% |
Integrate MCP App UIs with the host application's theming system so apps look native in Claude Desktop, ChatGPT, VS Code, Goose, Postman, and other MCP-enabled hosts.
MCP Apps render in sandboxed iframes inside host applications. Each host has its own visual theme (colors, fonts, border radii, spacing). The MCP Apps SDK provides:
--color-*, --font-*, --border-radius-*) injected by the hostapplyDocumentTheme, applyHostStyleVariables, applyHostFonts) to apply themuseHostStyles, useHostStyleVariables, useHostFonts) for React appsonhostcontextchanged event fired when theme changes (e.g., dark mode toggle)The key principle is: always use CSS variable fallbacks so the app looks correct both as an MCP App (host provides variables) and standalone (fallback values apply).
--color-background-primary, --color-background-secondary, --color-text-primary, --color-text-secondary, --color-border-primary--font-sans, --font-mono, --font-text-base-size, --font-text-sm-size--border-radius-sm, --border-radius-md, --border-radius-lgenv(safe-area-inset-top), env(safe-area-inset-bottom), etc.applyDocumentTheme(theme) -- sets document-level theme classapplyHostStyleVariables(context) -- applies all CSS variables from hostapplyHostFonts(context) -- loads and applies host fontsuseHostStyles() -- combined hook applying theme, variables, and fontsuseHostStyleVariables() -- CSS variables onlyuseHostFonts() -- font loading onlytypescriptimport { App, PostMessageTransport, applyDocumentTheme, applyHostStyleVariables, applyHostFonts, } from '@modelcontextprotocol/ext-apps'; const app = new App({ transport: new PostMessageTransport() }); // Register handler BEFORE connect() app.onhostcontextchanged = (params) => { const ctx = params.context; // Apply theme (light/dark) if (ctx.theme) { applyDocumentTheme(ctx.theme); } // Apply CSS variables applyHostStyleVariables(ctx); // Load and apply fonts applyHostFonts(ctx); }; // THEN connect await app.connect();
tsximport { useApp, useHostStyles } from '@modelcontextprotocol/ext-apps/react'; function MyApp() { const app = useApp(); useHostStyles(); // Handles all theme/variable/font application return ( <div className="app-container"> <h1>My MCP App</h1> </div> ); }
css/* Always use fallbacks so app works standalone too */ .app-container { background-color: var(--color-background-primary, #ffffff); color: var(--color-text-primary, #1a1a1a); font-family: var(--font-sans, system-ui, -apple-system, sans-serif); font-size: var(--font-text-base-size, 14px); border-radius: var(--border-radius-md, 8px); } .card { background-color: var(--color-background-secondary, #f5f5f5); border: 1px solid var(--color-border-primary, #e0e0e0); border-radius: var(--border-radius-sm, 4px); padding: 16px; } .label { color: var(--color-text-secondary, #666666); font-size: var(--font-text-sm-size, 12px); } .code { font-family: var(--font-mono, 'Courier New', monospace); } /* Safe area insets for mobile/embedded contexts */ .app-root { padding-top: env(safe-area-inset-top, 0px); padding-bottom: env(safe-area-inset-bottom, 0px); padding-left: env(safe-area-inset-left, 0px); padding-right: env(safe-area-inset-right, 0px); }
| Variable | Category | Description | |----------|----------|-------------| | --color-background-primary | Color | Main background | | --color-background-secondary | Color | Card/section background | | --color-background-tertiary | Color | Nested/subtle background | | --color-text-primary | Color | Main text | | --color-text-secondary | Color | Secondary/muted text | | --color-text-tertiary | Color | Subtle/hint text | | --color-border-primary | Color | Main borders | | --color-border-secondary | Color | Subtle borders | | --color-accent | Color | Interactive elements | | --color-error | Color | Error states | | --color-success | Color | Success states | | --color-warning | Color | Warning states | | --font-sans | Font | Sans-serif font family | | --font-mono | Font | Monospace font family | | --font-text-xs-size | Font | Extra small text size | | --font-text-sm-size | Font | Small text size | | --font-text-base-size | Font | Base text size | | --font-text-lg-size | Font | Large text size | | --font-text-xl-size | Font | Extra large text size | | --border-radius-sm | Layout | Small border radius | | --border-radius-md | Layout | Medium border radius | | --border-radius-lg | Layout | Large border radius | | --border-radius-full | Layout | Full/pill border radius |
css/* Works in BOTH modes because of fallback values */ body { margin: 0; padding: 0; background-color: var(--color-background-primary, #ffffff); color: var(--color-text-primary, #1a1a1a); font-family: var(--font-sans, system-ui, -apple-system, sans-serif); } /* When host provides variables, they override fallbacks automatically */ /* When running standalone, fallback values apply */
typescript// Configure fullscreen in the tool registration registerAppTool(server, { name: 'show_dashboard', resourceUri: 'app:///dashboard', // Request fullscreen display displayMode: 'fullscreen', async handler(args) { /* ... */ }, });
#ffffff or Arial without a variable.onhostcontextchanged.onhostcontextchanged BEFORE app.connect().var(--color-*, fallback) patternvar(--font-*, fallback) patternonhostcontextchanged handler registered BEFORE app.connect()applyDocumentTheme / applyHostStyleVariables / applyHostFonts called in handlerjavascriptconst mcpHostStylingTask = defineTask({ name: 'mcp-host-styling-integration', description: 'Integrate MCP App UI with host theming system', inputs: { framework: { type: 'string', required: true }, hybrid: { type: 'boolean', default: false }, fullscreen: { type: 'boolean', default: false } }, outputs: { cssFileCreated: { type: 'boolean' }, handlerRegistered: { type: 'boolean' }, artifacts: { type: 'array' } }, async run(inputs, taskCtx) { return { kind: 'skill', title: `Integrate host styling (${inputs.framework})`, skill: { name: 'mcp-host-styling-integration', context: { framework: inputs.framework, hybrid: inputs.hybrid, fullscreen: inputs.fullscreen, instructions: [ 'Create CSS with host variable fallbacks', 'Implement onhostcontextchanged handler', 'Apply theme, style variables, and fonts via SDK helpers', 'Add safe area inset padding', 'Verify styling in both MCP and standalone modes' ] } }, io: { inputJsonPath: `tasks/${taskCtx.effectId}/input.json`, outputJsonPath: `tasks/${taskCtx.effectId}/result.json` } }; } });
@modelcontextprotocol/ext-apps (applyDocumentTheme, applyHostStyleVariables, applyHostFonts)@modelcontextprotocol/ext-apps/react (useHostStyles, useHostStyleVariables, useHostFonts) -- React onlyOther measured skills in the registry, with their headline benchmark lift.