1# Model Context Protocol
2
3Zed uses the [Model Context Protocol](https://modelcontextprotocol.io/) to interact with context servers.
4
5> 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.
6
7Check out the [Anthropic news post](https://www.anthropic.com/news/model-context-protocol) and the [Zed blog post](https://zed.dev/blog/mcp) for a general intro to MCP.
8
9## Installing MCP Servers
10
11### As Extensions
12
13One of the ways you can use MCP servers in Zed is by exposing them as an extension.
14To learn how to create your own, check out the [MCP Server Extensions](../extensions/mcp-extensions.md) page for more details.
15
16Thanks to our awesome community, many MCP servers have already been added as extensions.
17You can check which ones are available via any of these routes:
18
191. [the Zed website](https://zed.dev/extensions?filter=context-servers)
202. in the app, open the Command Palette and run the `zed: extensions` action
213. in the app, go to the Agent Panel's top-right menu and look for the "View Server Extensions" menu item
22
23In any case, here are some of the ones available:
24
25- [Context7](https://zed.dev/extensions/context7-mcp-server)
26- [GitHub](https://zed.dev/extensions/github-mcp-server)
27- [Puppeteer](https://zed.dev/extensions/puppeteer-mcp-server)
28- [Gem](https://zed.dev/extensions/gem)
29- [Brave Search](https://zed.dev/extensions/brave-search-mcp-server)
30- [Prisma](https://github.com/aqrln/prisma-mcp-zed)
31- [Framelink Figma](https://zed.dev/extensions/framelink-figma-mcp-server)
32- [Linear](https://zed.dev/extensions/linear-mcp-server)
33- [Resend](https://zed.dev/extensions/resend-mcp-server)
34
35### As Custom Servers
36
37Creating an extension is not the only way to use MCP servers in Zed.
38You can connect them by adding their commands directly to your `settings.json`, like so:
39
40```json
41{
42 "context_servers": {
43 "your-mcp-server": {
44 "source": "custom",
45 "command": "some-command",
46 "args": ["arg-1", "arg-2"],
47 "env": {}
48 }
49 }
50}
51```
52
53Alternatively, you can also add a custom server by accessing the Agent Panel's Settings view (also accessible via the `agent: open settings` action).
54From there, you can add it through the modal that appears when you click the "Add Custom Server" button.
55
56## Using MCP Servers
57
58### Configuration Check
59
60Regardless of how you've installed MCP servers, whether as an extension or adding them directly, most servers out there still require some sort of configuration as part of the set up process.
61
62In the case of server extensions, after installing it, Zed will pop up a modal displaying what is required for you to properly set it up.
63For example, the GitHub MCP extension requires you to add a [Personal Access Token](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens).
64
65In the case of custom servers, make sure you check the provider documentation to determine what type of command, arguments, and environment variables need to be added to the JSON.
66
67To check if your MCP server is properly configured, go to the Agent Panel's settings view and watch the indicator dot next to its name.
68If they're running correctly, the indicator will be green and its tooltip will say "Server is active".
69If not, other colors and tooltip messages will indicate what is happening.
70
71### Using it in the Agent Panel
72
73Once installation is complete, you can return to the Agent Panel and start prompting.
74
75Some models are better than others when it comes to picking up tools from MCP servers.
76Mentioning your server by name always helps the model to pick it up.
77
78However, if you want to ensure a given MCP server will be used, you can create [a custom profile](./agent-panel.md#custom-profiles) where all built-in tools (or the ones that could cause conflicts with the server's tools) are turned off and only the tools coming from the MCP server are turned on.
79
80As an example, [the Dagger team suggests](https://container-use.com/agent-integrations#zed) doing that with their [Container Use MCP server](https://zed.dev/extensions/mcp-server-container-use):
81
82```json
83"agent": {
84 "profiles": {
85 "container-use": {
86 "name": "Container Use",
87 "tools": {
88 "fetch": true,
89 "thinking": true,
90 "copy_path": false,
91 "find_path": false,
92 "delete_path": false,
93 "create_directory": false,
94 "list_directory": false,
95 "diagnostics": false,
96 "read_file": false,
97 "open": false,
98 "move_path": false,
99 "grep": false,
100 "edit_file": false,
101 "terminal": false
102 },
103 "enable_all_context_servers": false,
104 "context_servers": {
105 "container-use": {
106 "tools": {
107 "environment_create": true,
108 "environment_add_service": true,
109 "environment_update": true,
110 "environment_run_cmd": true,
111 "environment_open": true,
112 "environment_file_write": true,
113 "environment_file_read": true,
114 "environment_file_list": true,
115 "environment_file_delete": true,
116 "environment_checkpoint": true
117 }
118 }
119 }
120 }
121 }
122}
123```
124
125### Tool Approval
126
127Zed's Agent Panel includes the `agent.always_allow_tool_actions` setting that, if set to `false`, will require you to give permission for any editing attempt as well as tool calls coming from MCP servers.
128
129You can change this by setting this key to `true` in either your `settings.json` or through the Agent Panel's settings view.