MCP Catalogs
Home

mcp-starter vs everything

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

mcp-starter
by instructa
everything
by modelcontextprotocol
Stars★ 37★ 85,748
30d uses
Score3577
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit12 mo agothis month

mcp-starter · Summary

A TypeScript starter template for building MCP servers with support for stdio, HTTP, and SSE protocols.

everything · Summary

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

mcp-starter · Use cases

  • Quickly prototype a new MCP server for custom tools
  • Create an MCP server with HTTP transport for remote access
  • Integrate MCP functionality into existing TypeScript applications

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-starter · Install

Installation

  1. Clone this repository
git clone https://github.com/instructa/mcp-starter.git
cd mcp-starter
  1. Install dependencies
npm install
  1. Run the server
# For stdio (default)
node ./bin/cli.mjs --stdio

# For HTTP
node ./bin/cli.mjs --http --port 4200

Client Configuration

Claude Desktop

Add to Claude Desktop config:

{
  "mcpServers": {
    "my-starter-mcp-stdio": {
      "command": "node",
      "args": ["./bin/cli.mjs", "--stdio"]
    }
  }
}

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.