Z

Zed

Run Zed editor tasks and file operations via MCP.

·No reviews yet
Repo
Share:

About

Auto-generated

Zed is a Model Context Protocol server in the Developer Tools category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about Zed.

What is the Zed MCP server?
The Zed MCP server enables interaction with the Zed editor, allowing external clients to trigger tasks and perform file operations within the editor's environment. This integrates Zed's capabilities into multi-tool workflows.
How do I install the Zed MCP server?
Installation details for the Zed MCP server are not provided in the MCP description. Typically, MCP servers are installed as part of the application they interface with, or as a standalone package per deployment instructions.
Does the Zed MCP server require an API key or other authentication?
No, the Zed MCP server uses 'none' for its authentication type, meaning it does not require an API key, OAuth, or other credentials to operate. It relies on the security of the local system.
What are typical use cases for the Zed MCP server?
Typical use cases include automating development tasks within the Zed editor, managing files, and integrating Zed's features into broader development workflows. This allows for programmatic control of editor functions.
What are the key capabilities exposed by the Zed MCP server?
The Zed MCP server exposes tools for running editor tasks and performing file operations. Specific tool details are not listed but generally involve actions like opening files, executing commands, and manipulating project structures.
Is there any cost associated with using the Zed MCP server?
The Zed MCP server is provided by the Community and is open-source, aligning with the Zed editor itself. Therefore, there is typically no direct cost for the server, but hosting and infrastructure costs may apply depending on usage.

Install Zed

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "zed": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-zed"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "zed": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-zed"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "zed": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-zed"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.