MCP Catalogs
Home

mcp-chain-of-draft-server vs everything

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

mcp-chain-of-draft-server
by bsmi021
everything
by modelcontextprotocol
Stars★ 24★ 85,748
30d uses
Score3477
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit14 mo agothis month

mcp-chain-of-draft-server · Summary

MCP server implementing Chain of Draft protocol for systematic reasoning and decision-making in development workflows.

everything · Summary

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

mcp-chain-of-draft-server · Use cases

  • Systematic code review with iterative refinement of feedback
  • Architecture planning through multiple design drafts and critiques
  • API design improvement through structured reasoning iterations
  • Implementation planning with step-by-step refinement process

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

mcp-chain-of-draft-server · Install

Installation

  1. Clone the repository:
git clone https://github.com/bsmi021/mcp-chain-of-draft-server.git
cd mcp-chain-of-draft-server
  1. Install dependencies:
npm install
  1. Add to Claude Desktop configuration (claude_desktop_config.json):
{
  "mcpServers": {
    "chain-of-draft": {
      "command": "npx",
      "args": ["@bsmi021/mcp-chain-of-draft-server"]
    }
  }
}

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.