MCP Catalogs
Home

mcp-starter-template vs everything

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

mcp-starter-template
by Git-Fg
everything
by modelcontextprotocol
Stars★ 0★ 85,748
30d uses
Score3677
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit2 mo agothis month

mcp-starter-template · Summary

A TypeScript template for creating autonomous MCP servers with tools-first architecture.

everything · Summary

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

mcp-starter-template · Use cases

  • Scaffolding new MCP servers rapidly with proper tool definitions
  • Creating autonomous agent capabilities that require well-described tools
  • Building MCP servers that need runtime enabling/disabling of capabilities
  • Developing tools with comprehensive metadata for agent orchestration

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

Installation

  1. **Clone the repository**
git clone https://github.com/Git-Fg/mcp-starter-template.git
cd mcp-starter-template
  1. **Install dependencies**
pnpm install
  1. **Build the server**
pnpm run build
  1. **Run tests**
pnpm test

Claude Desktop Integration

Add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "mcp-starter-template": {
      "command": "node",
      "args": ["dist/index.js"]
    }
  }
}

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.