MCP Catalogs
首页

mcp-elasticsearch vs sequentialthinking

并排对比,帮你在这两个 MCP server 之间做选择。

mcp-elasticsearch
by AeaZer
sequentialthinking
by modelcontextprotocol
Stars★ 9★ 85,748
30天用量
综合分3875
官方
分类
数据库搜索开发者工具
AI / LLM 工具开发者工具效率工具
实现语言GoTypeScript
最近提交10 个月前本月

mcp-elasticsearch · 概述

功能全面的 Elasticsearch MCP 服务器,提供完整的搜索能力和多种部署方式。

sequentialthinking · 概述

Sequential Thinking MCP 服务器通过逐步推理支持动态问题解决。

mcp-elasticsearch · 使用场景

  • 让 LLM 助手能够查询和与 Elasticsearch 数据存储交互
  • 通过 AI 工具调用实现数据管理工作流程自动化
  • 为 AI 应用程序提供搜索功能,无需直接 API 访问

sequentialthinking · 使用场景

  • 规划复杂系统迁移并进行风险评估
  • 需要逐步分析的调试生产环境问题
  • 比较具有条件分支的架构选项

mcp-elasticsearch · 安装

安装

使用 Docker(推荐)

docker run -d -p 8080:8080 \
  -e MCP_PROTOCOL=http \
  -e ES_ADDRESSES=http://your-elasticsearch:9200 \
  ghcr.io/aeazer/mcp-elasticsearch:latest

从源代码安装

go install github.com/AeaZer/mcp-elasticsearch@latest

Claude Desktop 配置

添加到 ~/.config/claude/config.json:

{
  "mcpServers": {
    "elasticsearch": {
      "command": "mcp-elasticsearch",
      "env": {
        "ES_ADDRESSES": "http://localhost:9200",
        "ES_VERSION": "8"
      }
    }
  }
}

sequentialthinking · 安装

安装

**Claude Desktop**: 添加到您的 claude_desktop_config.json 文件中:

{
  "mcpServers": {
    "sequential-thinking": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-sequential-thinking"
      ]
    }
  }
}

**VS Code**: 使用安装按钮或手动配置:

{
  "servers": {
    "sequential-thinking": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-sequential-thinking"
      ]
    }
  }
}

**Docker**:

{
  "mcpServers": {
    "sequentialthinking": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "mcp/sequentialthinking"
      ]
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。