goldrush-mcp-server
by covalenthq·★ 14·综合分 42
一个将 Covalent 的 GoldRush 区块链 API 作为工具和资源暴露给 LLM 客户端的 MCP 服务器。
概述
goldrush-mcp-server 是一个 TypeScript 实现的 MCP 服务器,将 Covalent 的区块链分析 API 集成到模型上下文协议中。它提供了多种区块链相关工具,包括代币余额、交易历史、区块信息、 gas 价格和投资组合分析。该服务器支持多种传输协议(STDIO 和 HTTP),可以与 Claude Desktop、Cursor 和 Windsurf 等 LLM 客户端集成。模块化架构使其易于维护和扩展额外的区块链功能。
试试问 AI
装完之后,这里有 5 个你可以让 AI 做的事:
什么时候选它
当您需要为 AI 应用程序集成区块链数据,并且已经使用或计划使用 Covalent 的 GoldRush API 时,选择此 MCP 服务器。
什么时候不要选它
如果您需要来自不同提供商的区块链数据,或希望尽量减少对外部区块链数据服务的依赖,请避免使用此服务器。
此 server 暴露的工具
从 README 抽取出 12 个工具bitcoin_hd_wallet_balancesFetch balances for each active child address derived from a Bitcoin HD wallet.
bitcoin_non_hd_wallet_balancesFetch Bitcoin balance for a non-HD address.
bitcoin_transactionsFetch transactions for a specific Bitcoin address with full transaction details.
blockFetch and render a single block for a block explorer.
block_heightsGet all the block heights within a particular date range.
erc20_token_transfersGet the transfer-in and transfer-out of a token along with historical prices from an address.
gas_pricesGet real-time gas estimates for different transaction speeds on a specific network.
historical_portfolio_valueGet daily portfolio balance for an address broken down by the token.
historical_token_balancesFetch historical native and fungible tokens held by an address at a given block height or date.
historical_token_pricesGet historic prices of a token between date ranges.
log_events_by_addressGet all the event logs emitted from a particular contract address.
log_events_by_topicGet all event logs of the same topic hash across all contracts within a particular chain.
可对比工具
安装
安装
npm install -g @covalenthq/goldrush-mcp-serverClaude 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 对比
最后更新于 · 由 README + GitHub 公开数据自动生成。