MCP Catalogs
首页

dynamic-shell-server vs sequentialthinking

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

dynamic-shell-server
by codelion
sequentialthinking
by modelcontextprotocol
Stars★ 41★ 85,748
30天用量
综合分3675
官方
分类
开发者工具安全运维基建
AI / LLM 工具开发者工具效率工具
实现语言PythonTypeScript
最近提交15 个月前本月

dynamic-shell-server · 概述

一个 Python MCP 服务器,通过动态批准和审计日志实现安全 shell 命令执行。

sequentialthinking · 概述

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

dynamic-shell-server · 使用场景

  • 通过 AI 助手安全执行 shell 命令,同时保持用户控制
  • 为通过 AI 界面执行的所有系统管理任务创建审计跟踪
  • 为开发人员提供受控方式执行构建和部署命令

sequentialthinking · 使用场景

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

dynamic-shell-server · 安装

安装

  1. 克隆此仓库:
git clone <repository-url>
cd dynamic-shell-server
  1. 创建并激活虚拟环境:
python -m venv venv
source venv/bin/activate  # 在 Windows 上使用:venv\Scripts\activate
  1. 安装依赖:
pip install -r requirements.txt

Claude Desktop 集成

  1. 打开 Claude Desktop 配置文件:

- macOS: ~/Library/Application Support/Claude/claude_desktop_config.json - Windows: %APPDATA%\Claude\claude_desktop_config.json

  1. 添加服务器配置:
{
    "mcpServers": {
        "shell": {
            "command": "/absolute/path/to/.venv/bin/python",
            "args": ["/absolute/path/to/dynamic_shell_server.py"]
        }
    }
}
  1. 重启 Claude Desktop

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 公开数据自动生成,定期更新。