Give an AI agent a Solana spending allowance instead of your key. Chain-enforced cap, x402.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
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.
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.
Two independent layers protect you:
delegated_amount and decrements it on each spend. Our code cannot raise it. A single revoke sets it to zero. This is a stock token program feature, not a new contract to trust.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.
Claude Code:
Cursor, or any MCP client (mcp.json):
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 |
|---|---|---|
OWNER_SECRET_KEY | unset | Owner key, base58 or a JSON byte array. Optional: without it, you sign in Phantom. |
OAW_NETWORK | mainnet | mainnet or devnet. State is kept per network. |
SOLANA_RPC_URL | public endpoint | Your own RPC. The public one rate-limits hard. Must be https. |
OAW_STATE_DIR | ~/.onchain-agent-wallets | Where agent keypairs, guardrails, and the spend ledger live (0600 in a 0700 dir). |
REQUIRE_CONFIRM | true | Every value-moving tool refuses to broadcast without confirm:true. |
Give a research agent 100 USDC of spending power, capped at 5 per transaction and 20 per day, and only for one API:
The agent now spends on its own:
And you stay in control:
A refusal tells you exactly which rule fired:
Custody (you sign)
| Tool | What it does |
|---|---|
create_agent_wallet | Generate the agent's keypair, create the vault, delegate a capped allowance, set guardrails. One call. |
fund_agent_wallet | Move tokens into the vault, and SOL to the agent for its fees. |
approve_agent_allowance | Raise, lower, or refill the on-chain ceiling. Replaces the previous allowance. |
withdraw_from_vault | Take funds back. Works with or without a live delegation. |
revoke_agent_wallet | The kill switch. Optionally sweeps the balance home in the same transaction. |
send_signed_transaction | Broadcast a transaction your wallet signed. |
Guardrails
| Tool | What it does |
|---|---|
set_guardrails | per_tx, daily, allow_recipients, allow_hosts, expires_at, confirm_over, paused. Instant, free, no transaction. |
Spending (the agent signs)
| Tool | What it does |
|---|---|
agent_pay | Send tokens to a recipient, inside the limits. |
pay_x402 | Call an x402 API, paying from the allowance. |
Visibility
| Tool | What it does |
|---|---|
agent_wallet_status | Live on-chain state, guardrails, 24h and 7d totals, and warnings. |
list_agent_wallets | Every agent, with live balances. |
spend_log | The audit trail, refusals included. |
Deployment
| Tool | What it does |
|---|---|
deploy_agent_onchain | Mint the agent a Metaplex Agent Registry identity with its payment address in the on-chain attributes. |
export_agent_runtime | The mcp.json and identity card needed to run this agent somewhere else. |
| 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 |
per_tx | Maximum single spend | this server |
daily | Maximum per rolling 24 hours, computed from the local ledger | this server |
allow_recipients | Only these addresses may receive funds. Empty means unrestricted | this server |
allow_hosts | Only these hosts may be paid over x402. Subdomains inherit. Empty means unrestricted | this server |
expires_at | Every spend refused after this timestamp | this server |
confirm_over | Spends above this need an explicit confirm:true | this server |
paused | 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.
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:
no_solana_option)wrong_cluster)asset_mismatch)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.
approve does that.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.
State is kept per network, so a devnet rehearsal never touches your mainnet agents.
The custody model is plain @solana/web3.js and @solana/spl-token, usable without MCP:
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/onchain-agent-wallets)<a href="https://allmcps.com/mcp/onchain-agent-wallets"><img src="https://allmcps.com/api/badge/onchain-agent-wallets?style=directory" alt="Onchain Agent Wallets on AllMCPs" /></a>