MCP Catalogs
Home

lotus-wisdom-mcp vs filesystem

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

lotus-wisdom-mcp
by linxule
filesystem
by modelcontextprotocol
Stars★ 27★ 85,748
30d uses
Score4477
Official
Categories
AI / LLM ToolsProductivityOther
File SystemDeveloper ToolsProductivity
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.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

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

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

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"]
    }
  }
}

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.