MCP Catalogs
Home

webmcp-react vs everything

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

webmcp-react
by MCPCat
everything
by modelcontextprotocol
Stars★ 24★ 85,748
30d uses
Score4377
Official
Categories
Developer ToolsAI / LLM ToolsBrowser Automation
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit2 mo agothis month

webmcp-react · Summary

React hooks for exposing app functionality as WebMCP tools with type safety and SSR support.

everything · Summary

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

webmcp-react · Use cases

  • Building React applications with AI-interactible tools
  • Creating WebMCP-enabled web experiences for AI agents
  • Developing AI-powered applications with real-time tool execution

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

webmcp-react · Install

npm install webmcp-react zod

For Claude Desktop integration:

{
  "mcpServers": {
    "webmcp": {
      "command": "npx",
      "args": ["webmcp-bridge"]
    }
  }
}

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.