VS Code 1.110: The Agentic IDE Era
Dillip Chowdary • Mar 10, 2026
Microsoft has released **VS Code v1.110**, a milestone update that fundamentally redefines the IDE from a "text editor with intellisense" to a **Native Agent Control Surface**. This update formalizes the integration of autonomous agents directly into the developer workflow.
Native MCP Server Integration
The standout feature is the native support for the Model Context Protocol (MCP). VS Code can now act as both an MCP Client and Server, allowing external agents (like Claude Code or OpenAI's new security agents) to interact with the local workspace through a standardized, secure interface.
Key Technical Updates:
- Agent Plugins: A new class of extensions that can execute terminal commands, run tests, and perform file system operations autonomously with human approval.
- Context Shadowing: Real-time indexing of the workspace into a local vector store, allowing agents to "see" the entire project structure without sending thousands of lines of code to the cloud for every query.
- Approval Gates: A built-in UI for reviewing and batch-approving agentic pull requests directly within the editor.
Architecting for Persistent Context
By leveraging **Context Shadowing**, Microsoft is addressing the latency issue inherent in remote LLM processing. This allows VS Code to serve as a high-fidelity "grounding layer" for agents, ensuring that every code suggestion is aware of the current project's types, dependencies, and architectural patterns.