onchain-agent-wallets
Provides tools for creating and managing AI agent wallets on Solana, with on-chain delegated allowances, guardrails, and spending capabilities, including x402 payments and revocable control.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@onchain-agent-walletsCreate an agent wallet for my research agent with a 100 USDC allowance and 5 per tx cap"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
onchain-agent-wallets
Give an AI agent a real Solana wallet without giving it your money.
An MCP server that hands any agent a spending allowance instead of a private key. The funds stay in an account you own. The agent gets a delegation the SPL Token program caps on-chain, plus guardrails you control, plus the ability to pay x402 APIs out of that allowance. You can revoke it in one instruction, and take the money back without asking the agent.
Nothing here is mocked: real SPL Token delegations, real Solana, real x402 settlement.
The problem this solves
Every "agent wallet" today works the same way: you generate a keypair, you hand it to the agent, and now the agent has everything in it. There is no ceiling, no allowlist, no expiry, and no way to take it back short of racing the agent to move the funds. People solve this by keeping almost nothing in the wallet, which means the agent cannot do anything useful.
An allowance is the older, better answer. The money never moves to the agent. The agent gets permission to spend a slice of it, and the chain enforces the slice.
Related MCP server: Slug Wallet
How it works
YOU (Phantom, Solflare, Ledger)
│ owns the vault, holds the money, can revoke or withdraw at any time
▼
┌──────────────────────────────────────────┐
│ vault token account │ derived from your address:
│ owner = you │ createWithSeed(you, "oaw1:<agent>")
│ balance = 500 USDC │
│ delegate = the agent ← capped at 100 │ SPL Token enforces this number
└──────────────────────────────────────────┘
▲
│ may spend up to the cap, and not one unit more
AGENT (its own keypair, holds only fee SOL)Two independent layers protect you:
On-chain. The SPL Token program checks every agent-signed transfer against
delegated_amountand decrements it on each spend. Our code cannot raise it. A singlerevokesets it to zero. This is a stock token program feature, not a new contract to trust.Local. Before this server signs anything it applies your rules: per-transaction cap, rolling 24-hour cap, recipient allowlist, x402 host allowlist, expiry, pause, and a confirm-above-this threshold that forces a human yes.
The agent's own keypair holds nothing but a little SOL for fees. If it leaks, the blast radius is the remaining allowance, and revoke_agent_wallet closes it in one transaction.
Install
npm install -g @three-ws/onchain-agent-wallets
# or run it ad hoc
npx -y @three-ws/onchain-agent-walletsSetup
Claude Code:
claude mcp add onchain-agent-wallets -- npx -y @three-ws/onchain-agent-walletsCursor, or any MCP client (mcp.json):
{
"mcpServers": {
"onchain-agent-wallets": {
"command": "npx",
"args": ["-y", "@three-ws/onchain-agent-wallets"],
"env": {
"OAW_NETWORK": "mainnet"
}
}
}
}No key is required to start. Owner actions come back as an unsigned transaction for your wallet to sign, which send_signed_transaction then broadcasts. If you would rather this server sign for you, set OWNER_SECRET_KEY.
Variable | Default | What it does |
| unset | Owner key, base58 or a JSON byte array. Optional: without it, you sign in Phantom. |
|
|
|
| public endpoint | Your own RPC. The public one rate-limits hard. Must be https. |
|
| Where agent keypairs, guardrails, and the spend ledger live (0600 in a 0700 dir). |
|
| Every value-moving tool refuses to broadcast without |
Quickstart
Give a research agent 100 USDC of spending power, capped at 5 per transaction and 20 per day, and only for one API:
create_agent_wallet
id: "researcher"
allowance: "100"
per_tx: "5"
daily: "20"
allow_hosts: ["api.example.com"]
confirm: true
fund_agent_wallet id: "researcher" amount: "500" sol: "0.02" confirm: trueThe agent now spends on its own:
pay_x402 id: "researcher" url: "https://api.example.com/premium" confirm: true
agent_pay id: "researcher" to: "<address>" amount: "2.50" confirm: trueAnd you stay in control:
agent_wallet_status id: "researcher" # live balances, remaining allowance, warnings
spend_log id: "researcher" # every spend AND every refusal, with reasons
set_guardrails id: "researcher" paused: true # instant, free, no transaction
revoke_agent_wallet id: "researcher" withdraw: true confirm: true # on-chain kill switchA refusal tells you exactly which rule fired:
{
"ok": false,
"error": "over_daily",
"message": "20.5 would exceed the 20 daily cap (18 already spent)",
"checks": [
{ "check": "per_tx", "ok": true, "detail": "2.5 is within the 5 per-transaction cap" },
{ "check": "daily", "ok": false, "detail": "20.5 would exceed the 20 daily cap (18 already spent)" }
]
}Tools
Custody (you sign)
Tool | What it does |
| Generate the agent's keypair, create the vault, delegate a capped allowance, set guardrails. One call. |
| Move tokens into the vault, and SOL to the agent for its fees. |
| Raise, lower, or refill the on-chain ceiling. Replaces the previous allowance. |
| Take funds back. Works with or without a live delegation. |
| The kill switch. Optionally sweeps the balance home in the same transaction. |
| Broadcast a transaction your wallet signed. |
Guardrails
Tool | What it does |
| per_tx, daily, allow_recipients, allow_hosts, expires_at, confirm_over, paused. Instant, free, no transaction. |
Spending (the agent signs)
Tool | What it does |
| Send tokens to a recipient, inside the limits. |
| Call an x402 API, paying from the allowance. |
Visibility
Tool | What it does |
| Live on-chain state, guardrails, 24h and 7d totals, and warnings. |
| Every agent, with live balances. |
| The audit trail, refusals included. |
Deployment
Tool | What it does |
| Mint the agent a Metaplex Agent Registry identity with its payment address in the on-chain attributes. |
| The mcp.json and identity card needed to run this agent somewhere else. |
Guardrails
Rule | Effect | Enforced by |
allowance | Total the agent may ever spend before a new approval | SPL Token program, on-chain |
vault balance | The agent cannot spend what is not there | SPL Token program, on-chain |
| Maximum single spend | this server |
| Maximum per rolling 24 hours, computed from the local ledger | this server |
| Only these addresses may receive funds. Empty means unrestricted | this server |
| Only these hosts may be paid over x402. Subdomains inherit. Empty means unrestricted | this server |
| Every spend refused after this timestamp | this server |
| Spends above this need an explicit | this server |
| Everything refused, instantly and for free | this server |
The distinction matters when it goes wrong. If this machine is compromised, the local rules can be bypassed, and the on-chain allowance still cannot. That is why the allowance should be the smallest number that lets the agent work, topped up as needed, rather than the whole balance.
x402
pay_x402 probes the endpoint unpaid first, so the price is known before anything moves and the guardrails see the real number. Then it tops the agent up for exactly that amount out of the vault, pays, and leaves the agent empty again.
It refuses to pay:
on a chain other than Solana (
no_solana_option)on the wrong cluster, for instance a mainnet price from a devnet wallet (
wrong_cluster)in a token the allowance is not denominated in (
asset_mismatch)above
max_price, a per-call ceiling independent of the standing guardrails (over_max_price)
If the endpoint is not charging, the content comes back and nothing is spent.
What the agent cannot do
Spend more than the allowance, however it is prompted. The token program decides that, not the model.
Move the vault, close it, or change its owner. It is not the owner.
Stop you withdrawing, or stop a revoke.
Raise its own allowance. Only an owner-signed
approvedoes that.Touch anything else in your wallet. The vault is a separate account holding only what you put in it.
Proven in test/token-delegation.test.mjs, which runs the real SPL Token program in process and asserts that a spend of 61 against a remaining allowance of 60 fails on-chain, with 460 sitting in the vault.
Rehearse for free on devnet
OAW_NETWORK=devnet npx -y @three-ws/onchain-agent-walletsState is kept per network, so a devnet rehearsal never touches your mainnet agents.
Use it as a library
The custody model is plain @solana/web3.js and @solana/spl-token, usable without MCP:
import { createVaultInstructions, readVault, spendableUnits } from '@three-ws/onchain-agent-wallets/lib/vault';
const { vault, instructions } = await createVaultInstructions({
connection,
owner: ownerPubkey,
agentId: 'researcher',
mint: usdcMint,
delegate: agentPubkey,
allowance: 100_000_000n, // 100 USDC
decimals: 6,
});
// sign `instructions` with the owner, then:
const state = await readVault({ connection, vault });
console.log(spendableUnits(state)); // what the agent may spend right now@three-ws/onchain-agent-wallets/lib/policy exports the guardrail engine on its own, if you want the same rules in a different runtime.
Tests
npm testRuns the guardrail unit tests, the x402 selection tests, and the delegation integration test against the real SPL Token program.
Related
@three-ws/metaplex-agent-mcpmints agent identities into the Metaplex Agent Registry.deploy_agent_onchainuses it as a library, and itsprepare_agent_mintis the browser-wallet path for minting.three.ws is where these agents get faces, avatars, and a home.
License
See LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceAI-native Solana wallet CLI with scoped MCP server, enabling AI agents to manage wallets with granular permissions, spend limits, and tamper-evident audit logging.5
- AlicenseNot gradedqualityCmaintenanceMCP server that gives terminal AI agents a guarded USDC wallet with firewall, automatic 402 payment handling, and budget limits.7MIT
- AlicenseAqualityCmaintenanceAn MCP server providing policy-gated Solana access for AI agents, with read-only operations and guarded transfers that require policy checks and simulation, returning unsigned transactions.7MIT
- AlicenseBqualityCmaintenanceAn MCP server that enables AI agents to interact with the Solana blockchain through 20 tools for wallet management, SPL token operations, blockchain exploration, and DeFi integration via Jupiter.21MIT
Related MCP Connectors
Native Solana staking for AI agents. 26 MCP tools, one-shot signing, webhooks.
Solana token risk-scoring MCP server for AI trading agents with insider wallet cluster detection.
MCP server connecting AI agents to non-custodial staking data across 130+ networks.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nirholas/onchain-agent-wallets'
If you have feedback or need assistance with the MCP directory API, please join our Discord server