Model Context Protocol
Zed uses the Model Context Protocol to interact with context servers.
The Model Context Protocol (MCP) is an open protocol that enables seamless integration between LLM applications and external data sources and tools. Whether you're building an AI-powered IDE, enhancing a chat interface, or creating custom AI workflows, MCP provides a standardized way to connect LLMs with the context they need.
Check out the Anthropic news post and the Zed blog post for an introduction to MCP.
MCP Servers as Extensions
One of the ways you can use MCP servers in Zed is by exposing them as an extension. To learn how to do that, check out the MCP Server Extensions page for more details.
Available extensions
Many MCP servers have been exposed as extensions already, thanks to Zed's awesome community. Check which ones are already available in Zed's extension store via any of these routes:
- the Zed website
- in the app, run the
zed: extensions
action - in the app, go to the Agent Panel's top-right menu and look for the "View Server Extensions" menu item
In any case, here are some of the ones available:
Add your own MCP server
Creating an extension is not the only way to use MCP servers in Zed.
You can connect them by adding their commands directly to your settings.json
, like so:
{
"context_servers": {
"some-context-server": {
"source": "custom",
"command": {
"path": "some-command",
"args": ["arg-1", "arg-2"],
"env": {}
}
}
}
}
Alternatively, you can also add a custom server by accessing the Agent Panel's Settings view (also accessible via the agent: open configuration
action).
From there, you can add it through the modal that appears when clicking the "Add Custom Server" button.