MCP Catalogs
Home

shadcn-ui-mcp-server vs everything

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

shadcn-ui-mcp-server
by Jpisnice
everything
by modelcontextprotocol
Stars★ 2,768★ 85,748
30d uses
Score5877
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis monththis month

shadcn-ui-mcp-server · Summary

MCP server providing AI assistants with comprehensive access to shadcn/ui components for React, Svelte, Vue, and React Native.

everything · Summary

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

shadcn-ui-mcp-server · Use cases

  • AI-powered UI development with shadcn/ui components across multiple frameworks
  • Multi-client production deployments with SSE transport and Docker
  • Component discovery and comparison across React, Svelte, Vue, and React Native implementations

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

shadcn-ui-mcp-server · Install

Installation

CLI Usage

# Basic usage
npx @jpisnice/shadcn-ui-mcp-server

# With GitHub token (recommended)
npx @jpisnice/shadcn-ui-mcp-server --github-api-key ghp_your_token_here

# Framework-specific
npx @jpisnice/shadcn-ui-mcp-server --framework svelte
npx @jpisnice/shadcn-ui-mcp-server --framework vue
npx @jpisnice/shadcn-ui-mcp-server --framework react-native

Claude Desktop

Download and double-click the .mcpb file from [Releases](https://github.com/Jpisnice/shadcn-ui-mcp-server/releases) for instant installation.

Manual Claude Desktop Configuration

{
  "mcpServers": {
    "shadcn-ui": {
      "command": "npx",
      "args": ["@jpisnice/shadcn-ui-mcp-server", "--github-api-key", "YOUR_TOKEN"]
    }
  }
}

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.