Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

dune-mcp-skilldune MCP 技能

Agent Skill

dune-mcp-skill 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

9,008

周安装

383

GitHub Stars

公开资料未说明

下载量

3,156
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:dune-mcp-skill(dune MCP 技能)
来源仓库:https://github.com/jolestar/dune-mcp-skill
安装命令:
openclaw skills install dune-mcp-skill
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install dune-mcp-skill

简介

Dune MCP技能通过UXC平台实现区块链表发现与SQL查询可视化。

  • 支持查询创建执行与结果检索全流程自助服务。dune-mcp-skill 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 内置帮助优先模式降低新手学习曲线,逐步引导复杂操作。
  • 依赖以太坊等公链数据可用性,分叉期间可能出现短暂中断。
  • 免费额度有限,高频使用建议购买专用实例提升性能。

SKILL.md

name
dune-mcp-skill
description
Use Dune MCP through UXC for blockchain table discovery, SQL query creation/execution, execution result retrieval, and visualization with help-first schema inspection, explicit auth binding, and guarded credit-consuming operations.

Dune MCP Skill

Use this skill to run Dune MCP operations through uxc.

Reuse the uxc skill for shared protocol discovery, output parsing, and generic auth/binding flows.

Prerequisites

  • uxc is installed and available in PATH.
  • Network access to https://api.dune.com/mcp/v1.
  • Dune API key is available for authenticated calls.

Core Workflow

  1. Confirm endpoint and protocol with help-first probing:

- uxc https://api.dune.com/mcp/v1 -h

  1. Configure credential/binding for repeatable auth:

- uxc auth credential set dune-mcp --auth-type api_key --header "x-dune-api-key={{secret}}" --secret-env DUNE_API_KEY - uxc auth credential set dune-mcp --auth-type api_key --header "x-dune-api-key={{secret}}" --secret-op op://Engineering/dune/api-key - uxc auth binding add --id dune-mcp --host api.dune.com --path-prefix /mcp/v1 --scheme https --credential dune-mcp --priority 100

  1. Use fixed link command by default:

- command -v dune-mcp-cli - If missing, create it: uxc link dune-mcp-cli https://api.dune.com/mcp/v1 - dune-mcp-cli -h

  1. Inspect operation schema before execution:

- dune-mcp-cli searchTables -h - dune-mcp-cli searchTablesByContractAddress -h - dune-mcp-cli createDuneQuery -h - dune-mcp-cli executeQueryById -h - dune-mcp-cli getExecutionResults -h

  1. Prefer read/discovery operations first, then query creation or credit-consuming execution.

Capability Map

  • Discovery:

- searchDocs - searchTables - listBlockchains - searchTablesByContractAddress

  • Query lifecycle:

- createDuneQuery - getDuneQuery - updateDuneQuery - executeQueryById - getExecutionResults

  • Analysis helpers:

- generateVisualization - getTableSize - getUsage

Recommended Usage Pattern

  1. Find the right table first:

- dune-mcp-cli searchTables query='uniswap swaps' - dune-mcp-cli searchTablesByContractAddress contractAddress=0x...

  1. Prefer higher-level spell tables when they already expose the metrics you need.
  2. Keep SQL partition-aware:

- use block_date, evt_block_date, or another partition/date column in WHERE

  1. Create a temporary query only after confirming table choice and date range.
  2. Execute and fetch results by execution ID.

Guardrails

  • Keep automation on JSON output envelope; do not rely on --text.
  • Parse stable fields first: ok, kind, protocol, data, error.
  • Use dune-mcp-cli as default command path.
  • dune-mcp-cli <operation> ... is equivalent to uxc https://api.dune.com/mcp/v1 <operation> ....
  • Discovery operations are read-only:

- searchDocs - searchTables - listBlockchains - searchTablesByContractAddress - getDuneQuery - getExecutionResults - getTableSize - getUsage

  • Require explicit user confirmation before credit-consuming or state-changing operations:

- createDuneQuery - updateDuneQuery - executeQueryById - generateVisualization

  • Be careful with privacy:

- confirm before switching a query from private to public - temporary queries can still be visible; inspect is_private and is_temp

  • key=value input now supports automatic type conversion for numeric MCP arguments.
  • Numeric IDs can be passed directly with key=value, for example:

- query_id=6794106 - queryId=6794106

  • Positional JSON is still useful for nested objects or when mixing string and numeric fields precisely:

- {"executionId":"01...","timeout":90,"limit":20}

  • For SQL passed via key=value, wrap the whole SQL string in double quotes so inner SQL single quotes survive shell parsing.
  • If listBlockchains returns a Dune-side schema/facet error, fall back to searchTables with blockchains filters.

Tested Real Scenario

The following flow was exercised successfully through uxc:

  • discover table: uniswap.uniswapx_trades
  • create temporary query for Base daily volume
  • execute query
  • fetch results

The successful SQL shape was:

SELECT block_date,
       ROUND(SUM(amount_usd), 2) AS daily_volume_usd,
       COUNT(*) AS trades
FROM uniswap.uniswapx_trades
WHERE blockchain = 'base'
  AND block_date >= date_add('day', -7, CURRENT_DATE)
GROUP BY 1
ORDER BY 1 DESC
LIMIT 7

References

  • Invocation patterns:

- references/usage-patterns.md

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

80.43%
按下载量换算2,538

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills