MCP Catalogs
Home

opencode-mcp vs everything

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

opencode-mcp
by AlaeddineMessadi
everything
by modelcontextprotocol
Stars★ 39★ 85,748
30d uses
Score4777
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis monththis month

opencode-mcp · Summary

MCP server that integrates OpenCode AI's 79 tools with MCP clients for autonomous coding tasks.

everything · Summary

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

opencode-mcp · Use cases

  • Delegate complex coding tasks like building REST APIs or refactoring modules to OpenCode while the primary AI continues working
  • Run background coding tasks in parallel with other work using fire-and-forget tools
  • Automate code reviews and debugging sessions with guided workflow prompts

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

opencode-mcp · Install

Installation

Prerequisite: [OpenCode](https://opencode.ai/) must be installed.

**Claude Code:**

claude mcp add opencode -- npx -y opencode-mcp

**Claude Desktop / Cursor / Windsurf:** Add to your MCP config:

{
  "mcpServers": {
    "opencode": {
      "command": "npx",
      "args": ["-y", "opencode-mcp"]
    }
  }
}

**VS Code Copilot / Zed / Amazon Q:** See [Configuration](docs/configuration.md) for client-specific setup.

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.