lotus-wisdom-mcp vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
lotus-wisdom-mcp by linxule | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 27 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 44 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具效率工具其它 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | JavaScript | TypeScript |
| 最近提交 | 1 个月前 | 本月 |
lotus-wisdom-mcp · 概述
一个实现《法华经》智慧框架的 MCP 服务器,用于冥想式问题解决和交互式可视化。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
lotus-wisdom-mcp · 使用场景
- 解决有表面矛盾的复杂哲学问题
- 分解需要分析和直觉方法的多方面问题
- 在问题解决过程中提供冥想停顿以促进洞察
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
lotus-wisdom-mcp · 安装
安装
通过 [Smithery](https://smithery.ai/server/lotus-wisdom-mcp) 一键安装,或按照下面的手动说明进行操作。
Claude Desktop
添加到您的 claude_desktop_config.json 中:
{
"mcpServers": {
"lotus-wisdom": {
"command": "npx",
"args": ["-y", "lotus-wisdom-mcp"]
}
}
}远程(托管)
公共实例可在 https://lotus-wisdom-mcp.linxule.workers.dev/mcp 获取,无需 API 密钥。
对于仅支持 stdio 的客户端,请使用:
{
"mcpServers": {
"lotus-wisdom": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://lotus-wisdom-mcp.linxule.workers.dev/mcp"]
}
}
}everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything