MCP Catalogs
Home

everything vs mcp-svelte-docs

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

everything
by modelcontextprotocol
mcp-svelte-docs
by spences10
Stars★ 85,748★ 122
30d uses
Score7749
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis monththis month

everything · Summary

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

mcp-svelte-docs · Summary

MCP server providing authoritative Svelte 5 documentation with comprehensive definitions and examples.

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-svelte-docs · Use cases

  • Search for Svelte 5 runes and syntax while coding
  • Get migration guidance from Svelte 4 to Svelte 5
  • Access TypeScript definitions for Svelte features during development

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

mcp-svelte-docs · Install

Installation

Claude Desktop

Add the following to your Claude Desktop configuration:

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

Windows (without WSL)

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

macOS / Linux

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

Windsurf (via WSL)

{
  "mcpServers": {
    "mcp-svelte-docs": {
      "command": "wsl.exe",
      "args": ["bash", "-c", "npx -y mcp-svelte-docs"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.