MCP Catalogs
Home

zed-mcp-server-github vs everything

Side-by-side comparison to help you pick between these two MCP servers.

zed-mcp-server-github
by LoamStudios
everything
by modelcontextprotocol
Stars★ 88★ 85,748
30d uses
Score4377
Official
Categories
Developer ToolsGitHubAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageRustTypeScript
Last commit3 mo agothis month

zed-mcp-server-github · Summary

A Zed extension that integrates GitHub MCP Server as a context provider for AI assistance.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

zed-mcp-server-github · Use cases

  • AI-assisted code review with GitHub PR context
  • Querying GitHub issues and repositories from within Zed
  • Enhanced AI responses based on GitHub repository content

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

zed-mcp-server-github · Install

Installation

  1. Open Zed
  2. Navigate to **Extensions** (or use command palette)
  3. Search for zed-mcp-server-github
  4. Install the extension

Configuration

Add the following to your Zed settings:

"context_servers": {
  "mcp-server-github": {
    "settings": {
      "github_personal_access_token": "<GITHUB_PERSONAL_ACCESS_TOKEN>"
    }
  }
}

everything · Install

NPX (recommended)

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

On Windows, use cmd /c:

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

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.