MCP Catalogs
Home

mcp-pointer vs everything

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

mcp-pointer
by etsd-tech
everything
by modelcontextprotocol
Stars★ 574★ 85,748
30d uses
Score5077
Official
Categories
Developer ToolsBrowser AutomationAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit6 mo agothis month

mcp-pointer · Summary

MCP Pointer enables AI assistants to see and analyze specific DOM elements through browser selection via MCP protocol.

everything · Summary

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

mcp-pointer · Use cases

  • Analyzing specific UI elements with AI coding assistants
  • Debugging CSS and layout issues in web development
  • Understanding component structure in React applications

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

Installation

  1. Install the Chrome Extension:

- From Chrome Web Store: [Install from Chrome Web Store](https://chromewebstore.google.com/detail/mcp-pointer/jfhgaembhafbffidedhpkmnaajdfeiok) - Or manual installation from releases

  1. Configure MCP Server:
npx -y @mcp-pointer/server config claude  # or cursor, windsurf, manual
  1. Restart your AI coding tool to load the MCP connection.

Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "mcp-pointer": {
      "command": "npx",
      "args": ["-y", "@mcp-pointer/server@latest", "start"]
    }
  }
}

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.