Solana Agents

Create, register, and run autonomous agents on Solana. Use the Metaplex Agent skills and agent registry to manage your autonomous agents.

Autonomous agents on Solana, built on MPL Core assets.

How Agent Assets Work

Every MPL Core asset has a built-in wallet — a PDA derived from the asset's public key. No private key exists for it, so the wallet can't be stolen. Only the asset itself can sign for its own wallet through Core's Execute lifecycle hook.

This makes Core assets a natural fit for autonomous agents:

  • The asset is the agent's identity — registered on-chain with an AgentIdentity plugin
  • The asset's PDA wallet holds the agent's funds — SOL, tokens, and other assets controlled exclusively by the agent
  • Executives act on the agent's behalf — since Solana has no background tasks or on-chain inference, a delegated executive signs transactions for the agent. The owner doesn't need to approve every action.

The owner retains full control. They choose which executive to delegate to, and they can revoke or switch delegation at any time — all without changing the agent's identity or wallet.