MCP Catalogs
Home

lotus-wisdom-mcp vs everything

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

lotus-wisdom-mcp
by linxule
everything
by modelcontextprotocol
Stars★ 27★ 85,748
30d uses
Score4477
Official
Categories
AI / LLM ToolsProductivityOther
Developer ToolsAI / LLM ToolsOther
LanguageJavaScriptTypeScript
Last commit1 mo agothis month

lotus-wisdom-mcp · Summary

An MCP server implementing the Lotus Sutra wisdom framework for contemplative problem-solving with interactive visualization.

everything · Summary

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

lotus-wisdom-mcp · Use cases

  • Resolving complex philosophical questions with apparent contradictions
  • Breaking down multi-faceted problems requiring both analytical and intuitive approaches
  • Providing meditative pauses during problem-solving to foster insight

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

lotus-wisdom-mcp · Install

Installation

Install via [Smithery](https://smithery.ai/server/lotus-wisdom-mcp) for one-click setup, or follow the manual instructions below.

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "lotus-wisdom": {
      "command": "npx",
      "args": ["-y", "lotus-wisdom-mcp"]
    }
  }
}

Remote (hosted)

A public instance is available at https://lotus-wisdom-mcp.linxule.workers.dev/mcp. No API key needed.

For stdio-only clients, use:

{
  "mcpServers": {
    "lotus-wisdom": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://lotus-wisdom-mcp.linxule.workers.dev/mcp"]
    }
  }
}

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.