Getting Started

Metaplex Skill

Last updated April 8, 2026

Metaplex Skill is an Agent Skill — a knowledge base that gives AI coding agents accurate, up-to-date knowledge of Metaplex programs, CLI commands, and SDK patterns.

Summary

The Metaplex Skill gives AI coding agents accurate knowledge of all Metaplex programs, CLI commands, and SDK patterns.

  • Covers six programs: Agent Registry, Genesis, Core, Token Metadata, Bubblegum, and Candy Machine
  • Supports CLI, Umi SDK, and Kit SDK approaches
  • Works with Claude Code, Cursor, Copilot, Codex, Windsurf, and other compatible agents
  • Uses progressive disclosure to minimize token usage while providing full coverage

Instead of relying on hallucinated APIs or incorrect flags, your AI agent can reference the Skill to get accurate commands and code on the first try.

Installation

Install the Skill in Claude Code, Cursor, Copilot, or any agent that supports the Agent Skills format.

How It Works

Learn how progressive disclosure keeps context lightweight while providing full coverage.

Programs Covered

The Skill covers six Metaplex programs and their full operation sets:

ProgramPurposeCLIUmi SDKKit SDK
Agent RegistryOn-chain agent identity, wallets, and execution delegationYesYes
GenesisToken launches via launchpool or bonding curve with Raydium graduationYesYes
CoreNext-gen NFTs with plugins and royalty enforcementYesYes
Token MetadataFungible tokens, NFTs, pNFTs, editionsYesYesYes
BubblegumCompressed NFTs via Merkle treesYesYes
Core Candy MachineNFT drops with configurable guardsYesYes

Operations Supported

The Skill provides reference material for three approaches to Metaplex development:

  • CLI (mplx) — Direct execution of Metaplex operations from the terminal. Agent registration (mplx agents), token launches and bonding curve creation (mplx genesis), asset creation, uploads, Candy Machine deployment, tree creation, transfers, and more.
  • Umi SDK — Full programmatic access covering all programs. Agent identity and delegation, Genesis launches and bonding curve swaps, fetches by owner/collection/creator, DAS API queries, delegate management, and plugin configuration.
  • Kit SDK — Token Metadata operations using @solana/kit with minimal dependencies.

Compatible Agents

The Skill works with any AI coding agent that supports the Agent Skills format:

Next Steps

Quick Reference

The Metaplex Skill installs via a single command and provides coverage for six programs through CLI, Umi SDK, and Kit SDK.

ItemValue
Install commandnpx skills add metaplex
Skill formatAgent Skills
CLI package@metaplex-foundation/cli (mplx)
Programs covered6 (Agent Registry, Genesis, Core, Token Metadata, Bubblegum, Candy Machine)
SDK approachesUmi SDK (all programs), Kit SDK (Token Metadata only)

Glossary

Key terms used throughout the Metaplex Skill documentation.

TermDefinition
Agent SkillA structured knowledge base that gives AI coding agents accurate context for a specific domain
Progressive disclosureArchitecture where the agent reads a lightweight router first, then loads only the reference files needed for the current task
SKILL.mdThe router file that maps tasks to specific reference files
mplxThe Metaplex CLI tool that provides direct terminal access to all supported programs
Umi SDKMetaplex's primary TypeScript SDK framework for programmatic access to all programs
Kit SDKA lightweight alternative SDK using @solana/kit, currently supporting Token Metadata only

Notes

  • The Skill requires an AI coding agent that supports the Agent Skills format
  • Skill files are static references bundled into your project — re-run the install command to update
  • The npx skills add command requires Node.js and npm/npx