Skip to content
July 23, 2026
  • AI & Copilot
  • Azure Cloud
  • How To Guides
  • Microsoft 365 Office
  • Windows
  • XBOX
  • Privacy Policy

Microsoft News Now

The Home of Microsoft News Today

Primary Menu
  • AI & Copilot
  • Azure Cloud
  • How To Guides
  • Microsoft 365 Office
  • Windows
  • XBOX
  • Privacy Policy
Light/Dark Button
Subscribe

Home - News - Brilliant VS Code Becomes First AI Code Editor to Give MCP Agents a Visual Voice

  • News
  • AI and Copilot

Brilliant VS Code Becomes First AI Code Editor to Give MCP Agents a Visual Voice

VS Code Insiders adds MCP Apps, letting AI agents render interactive UIs like dashboards, forms, and visualizers directly in chat.
Dave W. Shanahan January 26, 2026 (Last updated: February 12, 2026) 7 minutes read
Powerful VS Code Becomes First AI Code Editor to Give MCP Agents a Visual Voice with MCP Apps

Microsoft is turning AI coding agents into something you can actually click, drag, and explore inside VS Code, thanks to new MCP Apps support that gives agents a visual UI instead of just text.

VS Code just announced MCP Apps support! ๐Ÿ”ฅ

Here's one I just made that visualizes git commit history. You can also multi-select commits and have Copilot generate release notes for you!

Check out how to get started with MCP Apps in VS Code here: https://t.co/Ak2couNgtd #vscode pic.twitter.com/Uj1GjnzoMl

— Kayla Cinnamon โ˜• (@cinnamon_msft) January 26, 2026

MCP Apps: giving AI agents a visual voice

In a new VS Code blog post,ย Microsoftโ€™s Harald Kirschner and Connor Peet introduce MCP Apps as the first official extension for the Model Context Protocol. Until now, AI agents in editors have been powerful but stuck in plain text; they can search your codebase, edit files, run tests, and even render tables or ASCII diagrams, but anything interactive still requires a backโ€‘andโ€‘forth in natural language.

MCP Apps changes that by letting tools return interactive UI components directly into the chat experience. Instead of only reading text responses, developers can now get dashboards, forms, visualizations, and multiโ€‘step workflows rendered inline, creating a tighter loop between the agentโ€™s reasoning and the developerโ€™s decisions. VS Code is the first major AI code editor to ship full MCP Apps support. The feature is available today in VS Code Insiders, Microsoftโ€™s daily build channel, and is expected to roll out to the Stable release as part of next weekโ€™s update.

From textโ€‘only answers to interactive MCP Apps

The core idea behind MCP Apps is simple: when a tool call runs, it can now respond with a structured description of UI elements that the client renders as rich components instead of plain text. Those components can include things like sortable tables, charts, dragโ€‘andโ€‘drop lists, wizards, or custom controls tied to specific workflows.

This approach moves AI agents away from โ€œverbose terminal outputโ€ and toward something closer to native editor UX. The Model Context Protocol team describes MCP Apps as a crossโ€‘client standard: the same MCP App can render in multiple clientsโ€”including Claude, Goose, VS Code, and soon ChatGPTโ€”without the server author having to write custom UI code for each environment.

For VS Code specifically, MCP Apps builds on top of existing MCP support in GitHub Copilot. MCP servers already let agents query external systems such as databases, Playwright browser sessions, GitHub issues, or cloud platforms; now those same servers can respond with interactive UIs when a workflow calls for more than just text.

Concrete demos: when interaction beats text

To show why this matters, the VS Code team has shipped a set of demos and an open MCP Apps playground on GitHub. They highlight three scenarios where interaction clearly improves on chatโ€‘only agents.

  1. Interactive list reorderingย  Powerful VS Code Becomes First AI Code Editor to Give MCP Agents a Visual Voice with MCP Apps

    • Today: An agent suggests a sorted list and you iterate via textโ€”โ€œmove this upโ€, โ€œswap those twoโ€, โ€œput X at the topโ€โ€”until the order matches what you want.

    • With MCP Apps: The agent produces a dragโ€‘andโ€‘drop list UI next to its proposed order. You can rearrange items visually or hit an โ€œAsk AI to Sortโ€ control that applies the agentโ€™s reasoning again.

  2. Performance profiler visualizationPowerful VS Code Becomes First AI Code Editor to Give MCP Agents a Visual Voice with MCP Apps

    • Today: An agent parses a CPU profile and responds with a summary of suspected bottlenecks in natural language. You have no way to validate call stacks or timings yourself without opening a separate tool.

    • With MCP Apps: The agent renders an interactive flame graph, letting you drill into call stacks, hover for detailed timings, and crossโ€‘check the agentโ€™s hypotheses against your own understanding of the system.

  3. Feature flag selectorPowerful VS Code Becomes First AI Code Editor to Give MCP Agents a Visual Voice with MCP Apps

    • Today: The agent lists feature flags and you mentally map them to your environments, then ask for integration code in a separate step.

    • With MCP Apps: The agent shows a searchable flag picker with live environment status; you can flip between production, staging, and development views, select flags, and generate SDK integration codeโ€”all within one UI.

These are early examples, but they demonstrate the design goal: when a workflow requires selection, exploration, or confirmation, a structured UI beats a long text prompt exchange.

Storybook shows how MCP Apps fit real design systems

The announcement also highlights Storybook as an early MCP Apps partner, showing how design system workflows can benefit from this new layer. Storybook has added MCP Apps support to its open source MCP server, allowing agents in VS Code to render live previews of Storybook stories right inside the chat.

In practice, a developer can now ask an agent to โ€œbuild a login form using our design system,โ€ and instead of just returning code or a description, the agent can render an interactive component preview powered by the Storybook MCP server. That means you no longer have to switch between the agent chat and a separate Storybook UI to see or tweak the result.

Storybook core contributor Jeppe Reinhold, from Chromatic, notes that MCP Apps support eliminates this contextโ€‘switch: users can review and iterate on Storybook stories right in the agent chat, with the underlying design system staying in sync. Itโ€™s a good illustration of MCP Apps as a bridge between AIโ€‘generated code and the real design and component libraries teams rely on.

Why MCP Apps are a natural fit for VS Code

VS Code has long blurred the line between โ€œtext editorโ€ and โ€œlightweight IDE,โ€ with extensions adding panels, custom editors, notebooks, and sidebars. The team points to Jupyter notebooks as an early example of how mixing code with rich output fundamentally changes workflows, and GitHub Copilot agents as the step that gave AI more autonomy inside your workspace.

MCP Apps sit on top of that stack as the โ€œvisual voiceโ€ for agents. Instead of just reading what an AI is doing, you can see and manipulate its outputsโ€”selecting options, adjusting parameters, or exploring visualizationsโ€”while staying anchored in the same VS Code window.

On the implementation side, this is backed by recent work in VS Code Insiders to support the MCP Apps โ€œmodel context updateโ€ methods and the broader MCP developer experience. The January 2026 Insiders release notes explicitly call out MCP Apps improvements alongside other AIโ€‘adjacent capabilities, signaling that MCP is now a firstโ€‘class part of the VS Code extension story.

How to get started with MCP Apps in VS Code

If you want to experiment with MCP Apps today, you need the latest VS Code Insiders build. Once installed, you can enable GitHub Copilot and connect to MCP servers that support Apps using the existing โ€œUse MCP servers in VS Codeโ€ documentation.

Microsoft and the MCP core maintainers provide several resources for builders:

  • MCP Apps demo repository โ€“ A playground of example apps showing list reordering, visualizations, and other interactive patterns.

  • MCP Apps SDK and examples โ€“ The official extโ€‘apps SDK and sample implementations for building your own MCP Apps.

  • VS Code MCP documentation โ€“ Guidance on configuring MCP servers with GitHub Copilot in VS Code, including transports, authentication, and server definition providers.

  • MCP server development guide โ€“ A deeper dive into how to register MCP servers, expose tools, and work with resources from inside VS Code extensions.

  • MCP Apps announcement post โ€“ The broader protocolโ€‘level announcement that details crossโ€‘client support in Claude, Goose, VS Code, and ChatGPT.

Earlier today, the VS Code team hosted a livestream with Den Delimarsky, MCP core maintainer, to walk through MCP Apps, show real demos, and answer questions from developers interested in building or adopting the new UI layer.

For extension authors and MCP server implementers, the message is clear: if your tools already expose useful data to agents, adding MCP Apps is the next step to make those interactions interactive and trustworthy. Sometimes telling a developer whatโ€™s happening is not enoughโ€”now your agents can show it, and let the user stay in control.

Recent Posts You Might Like

  • Security Copilot Now Included in Microsoft 365 E5 as Copilot Business Brings Advanced AI to SMBs
  • Maia 200: Microsoftโ€™s Game-Changing New Inference Powerhouse That Could Redefine Azure AI Economics
  • How to Access GPTโ€‘5.2 in Microsoft 365 Copilot Chat (Boost Quick Response vs Smarter Think Deeper)
  • The Windows 11 January Update Nightmare Continues: Boot Loops, UNMOUNTABLE_BOOT_VOLUME Error And Second Emergency Patch
  • A Microsoft BitLocker Privacy Storm: How FBI Access to Encryption Keys Exposes a Major Windows Security Risk

About The Author

VS Code

Dave W. Shanahan

I’m Dave W. Shanahan, a Microsoft enthusiast with a passion for Windows, Xbox, Microsoft 365 Copilot, Azure, and more. I started MSFTNewsNow.com to keep the world updated on Microsoft news. Based in Massachusetts, you can email me at davewshanahan@gmail.com.

See author's posts

Like this:

Like Loadingโ€ฆ

Related


Discover more from Microsoft News Now

Subscribe to get the latest posts sent to your email.

Tags: Authentication Azure BitLocker Copilot Developer GitHub Microsoft Microsoft 365 Microsoft 365 Copilot Privacy Security Twitter Windows Windows 11

Post navigation

Previous: Security Copilot Now Included in Microsoft 365 E5 as Copilot Business Brings Advanced AI to SMBs
Next: Microsoft Launches Azure Static Web Apps Skill for GitHub Copilot, Turning AI Into a Deployment Sidekick

Related Stories

XBOX Backward Compatibility on PC Is Here: Play Classic XBOX Games on Windows 11 and Handhelds
  • News
  • XBOX and Gaming

XBOX Backward Compatibility on PC Is Finally Here: Play Your Favorite Classic XBOX Games on Windows 11 and Handhelds

Dave W. Shanahan July 22, 2026 0
Halo: Campaign Evolved and Beast of Reincarnation Lead Huge Late-July XBOX Game Pass Drop
  • News
  • XBOX and Gaming

Halo: Campaign Evolved and Beast of Reincarnation Lead Huge Late-July XBOX Game Pass Drop

Dave W. Shanahan July 21, 2026 0
Microsoft Expands Azure AI Infrastructure with AMD to Power Next-Gen Workloads Today
  • News

Microsoft Expands Azure AI Infrastructure with AMD to Power Next-Gen Workloads Today

Dave W. Shanahan July 20, 2026 0

Accessibility Amazon Android Authentication Azure Call of Duty Copilot Cybersecurity Developer Enterprise Free Play Days Gaming Generative AI GitHub Google Linkedin Microsoft Microsoft 365 Microsoft 365 Copilot Microsoft Copilot Microsoft Edge Microsoft Store Microsoft Teams Next Week on XBOX OpenAI Outlook Patch Tuesday Privacy Security Settings SharePoint Surface Twitter Windows Windows 10 Windows 11 Windows Insider XBOX XBOX Game Pass XBOX Game Pass Ultimate XBOX One XBOX Play Anywhere XBOX Series X XBOX Series X|S XBOX Wire

Useful Links

  • AI and Copilot (249)
  • Azure & Cloud (35)
  • Developers (3)
  • Enterprise (4)
  • How To Guides (99)
  • Microsoft 365/Office (98)
  • Microsoft Announcements (97)
  • News (1,283)
  • Security (78)
  • Surface (47)
  • Windows (169)
  • XBOX and Gaming (425)

You May Have Missed

XBOX Backward Compatibility on PC Is Here: Play Classic XBOX Games on Windows 11 and Handhelds
  • News
  • XBOX and Gaming

XBOX Backward Compatibility on PC Is Finally Here: Play Your Favorite Classic XBOX Games on Windows 11 and Handhelds

Dave W. Shanahan July 22, 2026 0
XBOX and Meta Bring XBOX Game Pass Starter Edition to Eligible Meta Horizon+ Subscribers
  • XBOX and Gaming

XBOX and Meta Bring Fresh XBOX Game Pass Starter Edition to Eligible Meta Horizon+ Subscribers

Dave W. Shanahan July 21, 2026 0
Halo: Campaign Evolved and Beast of Reincarnation Lead Huge Late-July XBOX Game Pass Drop
  • News
  • XBOX and Gaming

Halo: Campaign Evolved and Beast of Reincarnation Lead Huge Late-July XBOX Game Pass Drop

Dave W. Shanahan July 21, 2026 0
Microsoft Expands Azure AI Infrastructure with AMD to Power Next-Gen Workloads Today
  • News

Microsoft Expands Azure AI Infrastructure with AMD to Power Next-Gen Workloads Today

Dave W. Shanahan July 20, 2026 0
Copyright © 2026 All rights reserved. ReviewNews by AF themes.

    %d