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

alchemy-mcpalchemy MCP 搜索

Agent Skill

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

总安装

744

周安装

31

GitHub Stars

36

下载量

248
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/alchemyplatform/skills --skill alchemy-mcp

简介

alchemy-mcp 托管版中间件服务器,供 Claude Code、Codex 等客户端直接调用链上数据与交易模拟功能。

  • 适用于需要实时查询、NFT 分析或应用管理的 AI 代理,要求客户端已连接 mcp.alchemy.com/mcp 端点。
  • 可与 Alchemy CLI 配合使用,支持交易追踪、价格查询及 Webhooks 管理等多种高级操作。
  • 使用前需确认客户端兼容性并可能安装 @alchemy/cli,部分功能依赖钱包授权或 USDC 支付机制。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Alchemy MCP

Use the hosted Alchemy MCP server for live blockchain data, transaction simulation, tracing, NFT/portfolio queries, and Alchemy app administration from inside your AI client.

When to use this skill

Use alchemy-mcp when all of the following are true:

  • The user wants live agent work — live querying, analysis, admin work, or on-machine automation that the agent runs now in this session
  • An MCP-compatible client (Claude Code, Codex, Cursor, Claude Desktop, VS Code Copilot, etc.) is already wired against https://mcp.alchemy.com/mcp, OR the user is willing to add it
  • The Alchemy CLI (@alchemy/cli) is not installed locally

If the CLI is installed locally — or if both CLI and MCP are available — prefer the alchemy-cli skill instead. The CLI is the preferred local fallback runtime path.

When to use a different skill

SituationUse this skill instead
@alchemy/cli is installed locally, or both CLI and MCP are availablealchemy-cli
Neither CLI nor MCP is availableinstall alchemy-cli (npm i -g @alchemy/cli), then use alchemy-cli
Building application code that runs outside this agent session, with an Alchemy API keyalchemy-api
Building application code without an API key, or as an autonomous agent that needs to pay for itself, or you explicitly want x402/MPPagentic-gateway

Do not use this skill to write production application code — MCP tools are for live agent work, not for embedding into shipped software.

Connect your client

The server runs at https://mcp.alchemy.com/mcp and authenticates via OAuth — your client opens a browser to sign in with your Alchemy account on first use. No API key or local install required.

Claude Code

claude mcp add alchemy --transport http https://mcp.alchemy.com/mcp

Restart Claude Code, then run /mcp and select alchemy to authenticate.

Codex

codex mcp add alchemy --url https://mcp.alchemy.com/mcp

Verify with codex mcp list.

Cursor

Add to ~/.cursor/mcp.json (global) or .cursor/mcp.json (project):

{
  "mcpServers": {
    "alchemy": {
      "type": "streamable-http",
      "url": "https://mcp.alchemy.com/mcp"
    }
  }
}

Restart Cursor and verify via Cursor Settings > MCP.

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "alchemy": {
      "type": "streamable-http",
      "url": "https://mcp.alchemy.com/mcp"
    }
  }
}

VS Code Copilot

Add to .vscode/mcp.json in your project:

{
  "servers": {
    "alchemy": {
      "type": "http",
      "url": "https://mcp.alchemy.com/mcp"
    }
  }
}

Any other MCP client

Point it at https://mcp.alchemy.com/mcp using Streamable HTTP transport. The server supports OAuth 2.1 with PKCE; the client handles the authorization flow automatically.

Bootstrap workflow

Once the server is connected and you've signed in via OAuth:

  1. List appslist_apps to see your Alchemy apps.
  2. Select an appselect_app with the app ID. This caches the API key the server uses for RPC and Data tools. Required before any RPC or Data tool call.
  3. Run tools — call any of the 159 tools (e.g. getTokenPricesBySymbol, getNFTsForOwner, simulateAssetChanges, solana_getBalance).

If you need to create an app first:

create_app(name="My App", networks=["eth-mainnet", "base-mainnet"])

Then select_app against the new app.

Tool catalog

The server exposes 159 tools across three categories.

Admin (8 tools) — Account & app management

ToolPurpose
pingHealth check
list_appsList your Alchemy apps
get_appGet app details
select_appSelect an app and cache its API key for RPC/Data tools
create_appCreate a new app
update_appUpdate app name or description
list_chainsList all 100+ supported networks
update_allowlistUpdate app allowlists (network, address, origin, IP)

RPC (123 tools) — On-chain JSON-RPC

Standard EVM RPC, Token API, Transfers & Receipts, Transaction Simulation, Trace API, Debug API, ERC-4337 Account Abstraction, Solana standard RPC, and Solana Enhanced & DAS.

ClusterCountExamples
Standard EVM RPC31ethBlockNumber, ethGetBalance, ethCall, ethGetLogs, ethCallBundle
Token API3getTokenBalances, getTokenMetadata, getTokenAllowance
Transfers & Receipts2getAssetTransfers, getTransactionReceipts
Transaction Simulation5simulateAssetChanges, simulateExecution, simulateUserOperationAssetChanges
Trace API6traceCall, traceTransaction, traceBlock, traceFilter
Debug API6debugTraceTransaction, debugTraceCall, debugTraceBlockByNumber
ERC-4337 Account Abstraction7estimateUserOperationGas, getUserOperationReceipt, requestGasAndPaymasterAndData
Solana Standard RPC50solana_getBalance, solana_getTokenAccountsByOwner, solana_getBlock, solana_simulateTransaction
Solana Enhanced & DAS13solana_getAsset, solana_getAssetsByOwner, solana_searchAssets, solana_getPriorityFeeEstimate

Data (28 tools) — REST APIs

ClusterCountExamples
NFT API21getNFTsForOwner, getNFTMetadata, getOwnersForNFT, getFloorPrice, getNFTSales
Prices API3getTokenPricesBySymbol, getTokenPricesByAddress, getHistoricalTokenPrices
Portfolio (multi-chain)4getTokensByAddress, getTokenBalancesByAddress, getNFTsByAddress, getNFTContractsByAddress

Common task → tool map

TaskToolNotes
Latest ETH block numberethBlockNumberPass network: "eth-mainnet"
ETH balance for an addressethGetBalanceReturns hex wei
ERC-20 balancesgetTokenBalancesUse getTokenMetadata to resolve symbol/decimals
ERC-20 metadatagetTokenMetadataname, symbol, decimals, logo
Asset transfers (history)getAssetTransfersFilter by category (erc20, erc721, erc1155, external, internal)
Simulate a txsimulateAssetChangesPre-flight asset deltas
Trace a txtraceTransactionInternal call tree
Debug-trace a txdebugTraceTransactionGeth-style structured trace
List owned NFTsgetNFTsForOwnerAcross one chain
Multi-chain NFTsgetNFTsByAddressAcross many chains
NFT metadatagetNFTMetadataPer token id
NFT floor pricegetFloorPriceFrom major marketplaces
Token prices (spot)getTokenPricesBySymbole.g. ["ETH","USDC"]
Token prices (historical)getHistoricalTokenPricesTime range queries
Multi-chain portfoliogetTokenBalancesByAddressWith USD values
Solana balancesolana_getBalanceLamports
Solana token accountssolana_getTokenAccountsByOwnerSPL tokens
Compressed NFT lookupsolana_getAssetDAS standard
Owner's compressed NFTssolana_getAssetsByOwnerDAS standard
Solana priority feessolana_getPriorityFeeEstimateRecent samples
User operation receiptgetUserOperationReceiptERC-4337

Operating rules

  • Always call select_app first before any RPC or Data tool. Tools error out with a clear message if no app is selected.
  • Use the canonical chain slugs returned by list_chains (e.g. eth-mainnet, base-mainnet, solana-mainnet). Tool error messages will guide you if you guess wrong.
  • Don't bypass the MCP server with raw curl/HTTP from inside the agent — that's the API-key path covered by alchemy-api. MCP tools are the canonical interface for this skill.
  • Don't use MCP tools to generate production application code. When the user wants to ship code, hand off to alchemy-api (with API key) or agentic-gateway (without).

Supported chains

100+ chains including Ethereum, Base, Polygon, Arbitrum, Optimism, BNB, Solana, Starknet, zkSync, Scroll, Linea, Mantle, Blast, World Chain, and many more. Use list_chains to fetch the full list.

Troubleshooting

"No app selected"

Call select_app with the desired app ID. If you don't have an app yet, run create_app first.

OAuth flow doesn't open

Restart your MCP client after adding the server. For Claude Code, run /mcp and select alchemy to trigger the sign-in flow manually.

Tool not found

Some tools are namespaced (e.g. solana_* for Solana). Use list_chains to confirm the chain slug and check the tool catalog above for the exact name.

Rate limits / compute units

The MCP server inherits the rate limits of the selected app. Check usage in the Alchemy dashboard.

Official links

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.79%
按下载量换算91

Claude

25.83%
按下载量换算64

Cursor

18.69%
按下载量换算46

Gemini CLI

9.15%
按下载量换算23

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills