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 a general intro to MCP.

Installing 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 create your own, check out the MCP Server Extensions page for more details.

Thanks to our awesome community, many MCP servers have already been added as extensions. You can check which ones are available via any of these routes:

  1. the Zed website
  2. in the app, open the Command Palette and run the zed: extensions action
  3. 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:

As Custom Servers

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": {
    "your-mcp-server": {
      "source": "custom",
      "command": "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 you click the "Add Custom Server" button.

Using MCP Servers

Installation Check

Regardless of whether you're using MCP servers as an extension or adding them directly, most servers out there need some sort of configuration as part of the set up process.

In the case of extensions, Zed will show a modal displaying what is required for you to properly set up a given server. For example, the GitHub MCP extension requires you to add a Personal Access Token.

In 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.

To check whether your MCP server is properly installed, go to the Agent Panel's settings view and watch the indicator dot next to its name. If they're running correctly, the indicator will be green and its tooltip will say "Server is active". If not, other colors and tooltip messages will indicate what is happening.

Using in the Agent Panel

Once installation is complete, you can return to the Agent Panel and start prompting. Mentioning your MCP server by name helps the agent pick it up.

If you want to ensure a given server will be used, you can create a custom profile by turning off the built-in tools (either all of them or the ones that would cause conflicts) and turning on only the tools coming from the MCP server.

As an example, the Dagger team suggests doing that with their Container Use MCP server:

"agent": {
  "profiles": {
    "container-use": {
      "name": "Container Use",
      "tools": {
        "fetch": true,
        "thinking": true,
        "copy_path": false,
        "find_path": false,
        "delete_path": false,
        "create_directory": false,
        "list_directory": false,
        "diagnostics": false,
        "read_file": false,
        "open": false,
        "move_path": false,
        "grep": false,
        "edit_file": false,
        "terminal": false
      },
      "enable_all_context_servers": false,
      "context_servers": {
        "container-use": {
          "tools": {
            "environment_create": true,
            "environment_add_service": true,
            "environment_update": true,
            "environment_run_cmd": true,
            "environment_open": true,
            "environment_file_write": true,
            "environment_file_read": true,
            "environment_file_list": true,
            "environment_file_delete": true,
            "environment_checkpoint": true
          }
        }
      }
    }
  }
}

Tool Approval

Zed'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.

You can change this by setting this key to true in either your settings.json or through the Agent Panel's settings view.