Skip to content
Alchemy Logo

Build with AI

Pick the right Alchemy tool for your AI workflow. Teach a coding agent every Alchemy API with Agent Skills, automate from the terminal with the CLI, give it live data via the MCP Server, or let it authenticate autonomously with a wallet.

We ship four tools for building with AI on Alchemy. They're complementary, and most agent-driven workflows use two or three of them together.

Alchemy Agent Skills are plug-and-play knowledge packages for AI coding agents. Install them once, and your agent knows every Alchemy endpoint, authentication method, pagination rule, and error pattern without manual prompting.

npx skills add alchemyplatform/skills --yes

Get started with Agent Skills →

The Alchemy CLI is a single binary that wraps every Alchemy product. Use it for live querying, admin tasks, and local automation, or give it to an AI agent as a structured shell tool.

npm i -g @alchemy/cli@latest
  • Covers JSON-RPC nodes, Data APIs, Wallet APIs, Notify webhooks, and the Admin API across 100+ networks
  • --json --no-interactive flags make every command machine-readable
  • Built-in agent-prompt command emits a complete usage spec for AI agents
  • Supports API key, access key, and x402 wallet authentication

Get started with the CLI →

The Alchemy MCP Server exposes our APIs through the Model Context Protocol, so AI tools can fetch blockchain data as tool calls inside a conversation.

claude mcp add alchemy --transport http https://mcp.alchemy.com/mcp
  • 159 tools across token prices, NFT metadata, transaction history, simulation, tracing, account abstraction, Solana DAS, and more
  • 100+ supported networks
  • Hosted at https://mcp.alchemy.com/mcp with OAuth, no API key or local install required

Get started with the MCP Server →

Your agent can authenticate with a crypto wallet instead of an API key, purchasing credits in USDC via the x402 payment protocol. This is what the agentic-gateway skill teaches your agent automatically, and what the CLI uses when you pass --x402.

  • No API key required, supports authentication via SIWE (Sign-In With Ethereum) and SIWS (Sign-In With Solana)
  • Supports payment via USDC on Base and Solana
  • Wallet type is independent of which chain you query

Learn about agent authentication and payment →

I want to...Use
Give my AI coding agent knowledge of all Alchemy APIsAgent Skills
Run quick onchain queries or admin tasks from the terminalCLI
Script a recurring job, cron, or CI step that calls AlchemyCLI
Give a shell-driven agent a structured tool surfaceCLI with --json --no-interactive
Let my IDE copilot query live onchain data during a conversationMCP Server or CLI
Build an autonomous agent that authenticates with a wallet and pays in USDCAgent Authentication and Payment plus Skills or CLI
Give a coding agent both API knowledge and live data accessAgent Skills + MCP Server or CLI

These tools layer on top of each other. An agent using Skills to understand our APIs can shell out to the CLI for admin tasks, call the MCP Server for live data, and use the agentic-gateway skill or --x402 flag to operate without a pre-provisioned API key.

ToolSkillsCLIMCP ServerAgent Auth
Claude CodeYesYesYesYes
CursorYesYesYesYes
CodexYesYesYesYes
VS Code CopilotYesYesYes
Claude DesktopYesYesYes

The CLI works with any agent that can run shell commands, so the table above is a non-exhaustive list of the agents we test against.

Was this page helpful?