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

thegraph-token-mcp-skillthegraph token MCP 技能

Agent Skill

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

总安装

233

周安装

10

GitHub Stars

105

下载量

82
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/holon-run/uxc --skill thegraph-token-mcp-skill

简介

thegraph-token-mcp-skill 用于查找、检索和筛选相关信息。

  • 适用于在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景快速定位候选结果。
  • 通过关键词、来源仓库或安装命令核验具体用法,支持灵活的信息筛选需求。
  • 安装前建议确认权限范围和维护状态,避免触发联网或文件读写操作。
  • 可结合原始 README 进一步了解实际功能和调用方式。

SKILL.md

The Graph Token MCP Skill

Use this skill to run The Graph Token API MCP operations through uxc.

Reuse the uxc skill for generic protocol discovery, envelope parsing, and error handling rules.

Prerequisites

  • uxc is installed and available in PATH.
  • Network access to https://token-api.mcp.thegraph.com/.
  • A The Graph Token API API TOKEN (JWT) from https://thegraph.market/dashboard is available for authenticated calls.

Important auth distinction:

  • Do not reuse the thegraph-mcp-skill API key directly.
  • thegraph-token-mcp-skill uses a separate credential sourced from The Graph Market Token API dashboard.
  • The value used with Authorization: Bearer... must be the generated API TOKEN (JWT), not the raw dashboard API key.

Core Workflow

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

- uxc https://token-api.mcp.thegraph.com/ -h - Confirm protocol is MCP (protocol == "mcp" in envelope).

  1. Configure a dedicated Token API JWT credential and binding:

- Generate the API TOKEN (JWT) in https://thegraph.market/dashboard - Store it separately from the subgraph credential, for example: - uxc auth credential set thegraph-token --secret-env THEGRAPH_TOKEN_API_JWT - Bind the Token API endpoint to that dedicated credential: - uxc auth binding add --id thegraph-token-mcp --host token-api.mcp.thegraph.com --scheme https --credential thegraph-token --priority 100

  1. Use fixed link command by default:

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

  1. Inspect operation schema before execution:

- thegraph-token-mcp-cli getV1Networks -h - thegraph-token-mcp-cli getV1EvmTokens -h - thegraph-token-mcp-cli getV1EvmBalances -h

  1. Prefer read operations first, then narrower wallet/token/pool queries.

Capability Map

  • Service discovery:

- getV1Health - getV1Version - getV1Networks

  • Token data:

- getV1EvmTokens - getV1EvmTokensNative

  • Wallet and transfer data:

- getV1EvmBalances - transfer/history operations exposed by the endpoint

  • Market and DEX data:

- pool / OHLC / dex operations exposed by the endpoint

  • Non-EVM coverage:

- TVM and other chain families exposed by the endpoint

Always inspect host help and operation help in the current endpoint version before relying on an operation name or argument shape.

Recommended Usage Pattern

  1. Start with network discovery:

- thegraph-token-mcp-cli getV1Networks

  1. Confirm the operation and required arguments with -h.
  2. Query the narrowest surface first:

- token metadata for one contract - balances for one address - one pool / one token / one date range

  1. Expand to broader scans only when needed.

Guardrails

  • Keep automation on JSON output envelope; do not rely on --text.
  • Parse stable fields first: ok, kind, protocol, data, error.
  • Use thegraph-token-mcp-cli as default command path.
  • thegraph-token-mcp-cli <operation>... is equivalent to uxc https://token-api.mcp.thegraph.com/ <operation>... when the same auth binding is configured.
  • Use direct uxc "<endpoint>"... only as temporary fallback when link setup is unavailable.
  • Prefer key=value for simple arguments and positional JSON for nested objects.
  • If auth fails:

- confirm uxc auth credential info thegraph-token succeeds - confirm uxc auth binding match https://token-api.mcp.thegraph.com/ resolves to thegraph-token - confirm the stored secret is the generated API TOKEN (JWT), not the raw API key from The Graph Market dashboard - rerun thegraph-token-mcp-cli -h

Tested Real Scenario

The endpoint was verified through uxc host discovery and returned a live MCP tool list including:

  • getV1Health
  • getV1Version
  • getV1Networks
  • getV1EvmTokens
  • getV1EvmTokensNative
  • getV1EvmBalances

This confirms the skill target is a real MCP surface rather than a direct OpenAPI host.

The Token API requires its own bearer token workflow:

  • manage the token in https://thegraph.market/dashboard
  • generate API TOKEN (JWT) from the dashboard-managed Token API key
  • store that JWT separately from the subgraph MCP credential

Do not document or implement this skill as if it reused the same raw API key as thegraph-mcp-skill.

References

  • Invocation patterns:

- references/usage-patterns.md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.61%
按下载量换算31

Claude

31.59%
按下载量换算26

Cursor

19.21%
按下载量换算16

Gemini CLI

8.7%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills