MCP Catalogs
首页

sequentialthinking vs verbwire-mcp-server

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

sequentialthinking
by modelcontextprotocol
verbwire-mcp-server
by verbwire
Stars★ 85,748★ 2
30天用量
综合分7532
官方
分类
AI / LLM 工具开发者工具效率工具
开发者工具blockchain云存储
实现语言TypeScriptJavaScript
最近提交本月14 个月前

sequentialthinking · 概述

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

verbwire-mcp-server · 概述

一个通过 Verbwire API 实现区块链操作的成熟 MCP 服务器,支持智能合约、NFT 铸造和 IPFS 存储。

sequentialthinking · 使用场景

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

verbwire-mcp-server · 使用场景

  • 开发者部署和管理跨多个区块链的 NFT 合约
  • 数字艺术家使用 IPFS 集成铸造和分发 NFT
  • 需要管理代币所有权、集合和交易的区块链项目

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

verbwire-mcp-server · 安装

安装

  1. 在 [verbwire.com](https://www.verbwire.com/) 注册获取 Verbwire API 密钥
  1. 通过以下配置添加到 Claude Desktop 的 claude_desktop_config.json 文件:
{
  "mcpServers": {
    "verbwire": {
      "command": "npx",
      "args": [
        "-y",
        "@verbwire/verbwire-mcp-server"
      ],
      "env": {
        "VERBWIRE_API_KEY": "YOUR_API_KEY_HERE"
      }
    }
  }
}

或者,您可以克隆仓库并本地运行:

git clone https://github.com/verbwire/verbwire-mcp-server.git
cd verbwire-mcp-server
npm install
npm start
对比内容由 README + GitHub 公开数据自动生成,定期更新。