MCP Catalogs
Home

everything vs mcp-server-indexnow

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

everything
by modelcontextprotocol
mcp-server-indexnow
by zizzfizzix
Stars★ 85,748★ 0
30d uses
Score7730
Official
Categories
Developer ToolsAI / LLM ToolsOther
Web ScrapingDeveloper ToolsProductivity
LanguageTypeScriptPython
Last committhis month13 mo ago

everything · Summary

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

mcp-server-indexnow · Summary

An MCP server for submitting URLs to search engines via the IndexNow 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-server-indexnow · Use cases

  • Web developers submitting updated or new content pages to search engines
  • Content creators ensuring their new articles get indexed quickly
  • AI assistants automatically informing search engines about website changes

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

Using uvx (recommended)

"mcpServers": {
  "mcp_server_indexnow": {
    "command": "uvx",
    "args": [
      "--from",
      "git+https://github.com/zizzfizzix/mcp-server-indexnow",
      "mcp_server_indexnow"
    ]
  }
}

Using make

make install

Then add to Claude desktop:

"mcpServers": {
  "mcp_server_indexnow": {
    "command": "/path/to/mcp-server-indexnow/.venv/bin/python",
    "args": ["/path/to/mcp-server-indexnow/mcp_server_indexnow/main.py"]
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.