MCP Catalogs
首页

sequentialthinking vs tfmcp

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

sequentialthinking
by modelcontextprotocol
tfmcp
by nwiizo
Stars★ 85,748★ 364
30天用量
综合分7552
官方
分类
AI / LLM 工具开发者工具效率工具
运维基建开发者工具安全
实现语言TypeScriptRust
最近提交本月2 个月前

sequentialthinking · 概述

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

tfmcp · 概述

tfmcp 是一个全面的 Terraform MCP 服务器,配备 31 个专业工具,让 AI 助手能够管理基础设施。

sequentialthinking · 使用场景

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

tfmcp · 使用场景

  • AI 助手通过自然语言命令管理 Terraform 基础设施
  • 基础设施即代码分析和重构建议
  • 自动化 Terraform 计划审查和风险评估
  • 跨多个环境的工作区管理
  • Terraform 模块搜索和集成辅助

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

tfmcp · 安装

安装

从 Crates.io 安装

cargo install tfmcp

使用 Docker

git clone https://github.com/nwiizo/tfmcp
cd tfmcp
docker build -t tfmcp .
docker run -it tfmcp

Claude Desktop 集成

添加到 ~/Library/Application Support/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "tfmcp": {
      "command": "/path/to/your/tfmcp",
      "args": ["mcp"],
      "env": {
        "HOME": "/Users/yourusername",
        "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin",
        "TERRAFORM_DIR": "/path/to/your/terraform/project"
      }
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。