MCP Catalogs
首页

goldrush-mcp-server

by covalenthq·14·综合分 42

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

financeblockchaindeveloper-tools
2
Forks
2
活跃 Issue
3 个月前
最近提交
2 天前
收录于

概述

goldrush-mcp-server 是一个 TypeScript 实现的 MCP 服务器,将 Covalent 的区块链分析 API 集成到模型上下文协议中。它提供了多种区块链相关工具,包括代币余额、交易历史、区块信息、 gas 价格和投资组合分析。该服务器支持多种传输协议(STDIO 和 HTTP),可以与 Claude Desktop、Cursor 和 Windsurf 等 LLM 客户端集成。模块化架构使其易于维护和扩展额外的区块链功能。

试试问 AI

装完之后,这里有 5 个你可以让 AI 做的事:

:通过自然语言让 LLM 访问区块链数据和 analytics
:为 AI 驱动的金融顾问提供区块链信息检索
:支持开发人员构建具有 MCP 集成的区块链感知应用
:什么是 GoldRush API 密钥?
:此服务器支持哪些传输协议?

什么时候选它

当您需要为 AI 应用程序集成区块链数据,并且已经使用或计划使用 Covalent 的 GoldRush API 时,选择此 MCP 服务器。

什么时候不要选它

如果您需要来自不同提供商的区块链数据,或希望尽量减少对外部区块链数据服务的依赖,请避免使用此服务器。

此 server 暴露的工具

从 README 抽取出 12 个工具
  • bitcoin_hd_wallet_balances

    Fetch balances for each active child address derived from a Bitcoin HD wallet.

  • bitcoin_non_hd_wallet_balances

    Fetch Bitcoin balance for a non-HD address.

  • bitcoin_transactions

    Fetch transactions for a specific Bitcoin address with full transaction details.

  • block

    Fetch and render a single block for a block explorer.

  • block_heights

    Get all the block heights within a particular date range.

  • erc20_token_transfers

    Get the transfer-in and transfer-out of a token along with historical prices from an address.

  • gas_prices

    Get real-time gas estimates for different transaction speeds on a specific network.

  • historical_portfolio_value

    Get daily portfolio balance for an address broken down by the token.

  • historical_token_balances

    Fetch historical native and fungible tokens held by an address at a given block height or date.

  • historical_token_prices

    Get historic prices of a token between date ranges.

  • log_events_by_address

    Get all the event logs emitted from a particular contract address.

  • log_events_by_topic

    Get all event logs of the same topic hash across all contracts within a particular chain.

可对比工具

blockchain-api-mcpethers-mcpweb3js-mcpalchemy-mcp

安装

安装

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_这里"
            }
        }
    }
}

FAQ

什么是 GoldRush API 密钥?
需要从 Covalent 的 GoldRush 平台 (https://goldrush.dev/platform/auth/register/) 获取的 API 密钥才能使用此 MCP 服务器并访问区块链数据。
此服务器支持哪些传输协议?
该服务器支持 STDIO(推荐用于 MCP 客户端)和 HTTP 传输协议,适用于不同的集成场景。

goldrush-mcp-server 对比

GitHub →

最后更新于 · 由 README + GitHub 公开数据自动生成。