MCP Catalogs
首页

goldrush-mcp-server vs sequentialthinking

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

goldrush-mcp-server
by covalenthq
sequentialthinking
by modelcontextprotocol
Stars★ 14★ 85,748
30天用量
综合分4275
官方
分类
金融数据blockchain开发者工具
AI / LLM 工具开发者工具效率工具
实现语言TypeScriptTypeScript
最近提交3 个月前本月

goldrush-mcp-server · 概述

一个将 Covalent 的 GoldRush 区块链 API 作为工具和资源暴露给 LLM 客户端的 MCP 服务器。

sequentialthinking · 概述

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

goldrush-mcp-server · 使用场景

  • 通过自然语言让 LLM 访问区块链数据和 analytics
  • 为 AI 驱动的金融顾问提供区块链信息检索
  • 支持开发人员构建具有 MCP 集成的区块链感知应用

sequentialthinking · 使用场景

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

goldrush-mcp-server · 安装

安装

npm install -g @covalenthq/goldrush-mcp-server

Claude Desktop 配置

将以下内容添加到您的 claude_desktop_config.json 文件中:

{
    "mcpServers": {
        "goldrush": {
            "command": "npx",
            "args": ["-y", "@covalenthq/goldrush-mcp-server@latest"],
            "env": {
                "GOLDRUSH_API_KEY": "您的_API_KEY_这里"
            }
        }
    }
}

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