npx skills add https://github.com/alchemyplatform/skills --skill alchemy-apiCLI를 사용하여 이 스킬을 설치하고 작업 공간에서 SKILL.md 워크플로 사용을 시작하세요.
Agent Skills for using Alchemy — both for live agent work done in the current session (one-off queries, admin, automation) and for wiring Alchemy into application code that ships.
Pick the right skill in two questions:
flowchart TD
Start(["Want to use Alchemy"]) --> Q1{"Live agent work<br/>or app code?"}
Q1 -->|"Live work<br/>queries, admin, automation<br/>in this session"| Q2{"Local setup?"}
Q1 -->|"App code<br/>that ships outside<br/>this session"| Q3{"Have an<br/>API key?"}
Q2 -->|"CLI installed<br/>(or both CLI and MCP)"| CLI["<b>alchemy-cli</b><br/>preferred local fallback"]
Q2 -->|"Only MCP wired in,<br/>no CLI"| MCP["<b>alchemy-mcp</b><br/>hosted MCP server"]
Q2 -->|"Neither available"| Install["Install the CLI"] --> CLI
Q3 -->|"Yes, or willing<br/>to create one"| API["<b>alchemy-api</b><br/>preferred app-integration path"]
Q3 -->|"No key, but<br/>@alchemy/cli installed"| Bridge["Use CLI to fetch a key<br/>from the user's account"] --> API
Q3 -->|"No, autonomous agent,<br/>or explicit x402/MPP"| GW["<b>agentic-gateway</b><br/>specialized"]
| What you're doing | Use this skill |
|---|---|
Live agent work + @alchemy/cli is installed locally |
alchemy-cli (preferred local fallback) |
Live agent work + both @alchemy/cli and an MCP server are available |
alchemy-cli (CLI is preferred when both are available) |
| Live agent work + only an MCP server is wired into the client (no CLI) | alchemy-mcp |
| Live agent work + neither is available | install @alchemy/cli (npm i -g @alchemy/cli), then use alchemy-cli |
| App code + you have or can create an Alchemy API key | alchemy-api (preferred app-integration path) |
App code + no API key in env, but @alchemy/cli is installed locally |
alchemy-api after using the CLI to fetch a key (alchemy auth login → alchemy apps select → alchemy --reveal config get api-key) |
| App code + no API key, autonomous agent paying per-request, or you explicitly want x402/MPP | agentic-gateway (specialized) |
Each skill self-routes — its When to use this skill / When to use a different skill sections will redirect you if you land on the wrong one.
The Alchemy CLI is the preferred local fallback runtime path for live agent work. The MCP server is the preferred runtime path for AI clients only when the CLI is not installed.
skills/alchemy-cliLive agent skill for the local @alchemy/cli. Maps every Alchemy product (Node, Token, NFT, Transfers, Prices, Portfolio, Simulation, Solana, Webhooks, Apps) to alchemy <command> invocations with structured JSON output.
npm i -g @alchemy/cli, then alchemy auth loginskills/alchemy-cli/SKILL.mdskills/alchemy-mcpLive agent skill for the hosted Alchemy MCP server (https://mcp.alchemy.com/mcp). Exposes 159 tools across 100+ chains. OAuth flow handled by the client; no API key or local install required.
skills/alchemy-mcp/SKILL.mdskills/alchemy-apiApp-integration skill for wiring Alchemy into application code that ships, using a standard API key. Covers the full Alchemy surface: EVM JSON-RPC, WebSockets, Token, NFT, Transfers, Prices, Portfolio, Simulation, Webhooks, Solana, Solana Yellowstone gRPC, Sui gRPC, Wallets/Account Kit, and operational topics.
skills/alchemy-api/SKILL.mdskills/agentic-gatewaySpecialized app-integration skill for app code without an API key. Uses Alchemy's gateway with wallet-based auth (SIWE for EVM, SIWS for Solana) and per-request payments (USDC via x402, or USDC/credit-card via MPP).
@alchemy/x402 + @x402/fetch or @x402/axios) or MPP (mppx)skills/agentic-gateway/SKILL.mdnpm i -g @alchemy/cli
alchemy auth login
npx skills add alchemyplatform/skills --yes
Each source skill is self-contained and includes:
SKILL.mdLICENSE.txtagents/openai.yaml metadata for agent ecosystems that support itThese skills follow the Agent Skills specification. See spec/agent-skills-spec.md for details.
MIT