MCP Catalogs
Home

everything vs mcp

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

everything
by modelcontextprotocol
mcp
by vuetifyjs
Stars★ 85,748★ 96
30d uses
Score7748
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 · Summary

Vuetify MCP server provides Vuetify component documentation and API information to AI assistants via the Model Context Protocol.

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

  • Generating Vuetify components with proper props and attributes in AI assistants
  • Creating common UI layouts following Vuetify best practices
  • Accessing Vuetify documentation, installation guides, and release notes without leaving IDEs

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

Quick Start

Hosted HTTP Server (Easiest)
# Claude Code
claude mcp add --transport http vuetify-mcp https://mcp.vuetifyjs.com/mcp
Local Installation
# Start the Vuetify MCP server
npx -y @vuetify/mcp
Claude Desktop Configuration
{
  "mcpServers": {
    "vuetify-mcp": {
      "command": "npx",
      "args": ["-y", "@vuetify/mcp"]
    }
  }
}

Or use mcp-remote for the hosted server:

{
  "mcpServers": {
    "vuetify-mcp": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://mcp.vuetifyjs.com/mcp"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.