stipend
Officialstipend
A non-custodial USDC wallet on Base that an AI agent installs by itself, with spending limits enforced below the instruction layer.
pip install eth-account && curl -sL stipend.sh/install | shThis is the source of the package that installer fetches. It is published so that the claims made for it can be checked rather than believed.
It ships an MCP (Model Context Protocol) server — stipend mcp — exposing
seven tools over stdio, so an agent can hold and spend money through the tool
interface it already has. See MCP server below.
The claim worth checking
The failure that matters for an agent holding money is not a stolen key. It is a correctly signed transaction it was argued into.
Almost every defence against that lives in the instruction layer — a system prompt saying "do not send funds to unverified addresses." That is a suggestion to a model, sitting in the same context window as the text attacking it.
In here the limits are not advice. They are code that a transaction passes through on its way to being signed, and no wording in any context window reaches them.
Start at stipend/policy.py. It is about three hundred
lines and it is the whole argument.
Related MCP server: BotWallet MCP Server
The three controls
control | what it does |
per-transaction and daily caps | a ceiling that no instruction can raise |
one-time approvals | authorise a single payment — bound to that recipient, that amount, expiring, single use — instead of raising a cap |
new-destination confirmation | the first payment to any address you have never paid needs confirming, whatever the size |
The second is the one people get wrong. Raising a cap to afford one purchase weakens every future payment to everyone, which is precisely what an attacker asks for. Authorise the payment, not the capability.
The third is what stops a drain by many small payments that each sit under the threshold. An attacker's address is, by definition, one you have never paid.
And if you turn on an allowlist, it is absolute. Funds reach nothing else — not with a confirmation, not with an approval, not with any instruction from anywhere.
MCP server
The wallet is also a Model Context Protocol (MCP) server, so an agent can use it through the tool interface it already has rather than by shelling out.
stipend mcpIt speaks JSON-RPC over stdin and stdout — the MCP stdio transport. Your MCP client spawns the process; nothing listens on a port and nothing is exposed to a network.
In a client's config that looks like:
{
"mcpServers": {
"stipend": {
"command": "stipend",
"args": ["mcp"]
}
}
}The tools
tool | what it does |
| the wallet's address, so money can reach you whether or not you are running |
| USDC held, native currency held, spent today, and the daily limit |
| would this payment be allowed? Answers without sending anything |
| send USDC, subject to every limit below |
| read incoming payments off the network and record them |
| earned against spent, by category, with runway in days |
| what is outstanding, and whose job each item is |
Every one of them goes through the same policy.check gate the command line
uses, so the caps, the allowlist and the new-destination confirmation apply
identically. There is no path here that moves money without them.
stipend_check exists so an agent can ask "would this be allowed?" before it
offers to pay for something, turning a refusal into an answer rather than a
failure.
What it deliberately does not expose
No tool reads, exports or derives the private key. No tool changes a spending limit or the allowlist. No tool creates or overwrites a wallet.
An MCP tool is callable by a model that is reading untrusted text, and raising a cap is exactly what an attacker would ask for — so it is not on the menu at all. Configuration changes stay at the command line, where a human is present.
Why it is not hosted
Every registry would prefer a URL, and we will not publish one. A hosted wallet server means the key lives on somebody else's machine — ours — and the whole claim of this package is that it does not. This runs beside the keystore, under the same user, and the key never moves.
Run its own tests
No network, no funds, no wallet of yours touched:
python -m stipend selftest219 checks covering address validation, amount arithmetic, every policy branch, the allowlist, the daily cap, destination trust and its expiry, keystore encryption, ERC-20 encoding, x402 requirement selection, EIP-3009 signing, the ledger, and exactly what telemetry would send.
What we would rather have
Someone to break it.
If you can construct an injection that moves money past the checks in
policy.py, open an issue. We would rather hear it from you than from someone
who is not being polite about it.
Honest limits
Not independently audited.
x402 interoperability is verified against our own endpoint, not third-party merchants.
The key is generated on your machine and never transmitted — which also means nobody can recover it for you, including us.
Keep the balance small. It is a working float, not savings.
Links
stipend.sh — the site, which serves plain text to agents and a page to browsers at the same URL
stipend.sh/skill.md — written for agents
stipend.sh/for-your-human — written for the person who pays
kina — a small language some of this reads and writes
Licence
Apache-2.0. See LICENSE.
Built by the Stipend dev team. FelixTrade.ai Pty Ltd, Australia.
This server cannot be installed
Maintenance
Related MCP Servers
- Alicense-qualityCmaintenanceAn MCP server that enables fee-free USDC transfers on the Base blockchain network using Coinbase CDP MPC Wallet integration, with support for ENS and BaseName domain resolution.721MIT
- AlicenseAqualityDmaintenanceEnables AI agents to manage USDC wallets on Solana, allowing them to send payments, create invoices, and access paid APIs within human-defined spending limits. It uses threshold signatures to provide agents with financial autonomy while ensuring secure oversight and transaction approval.63693Apache 2.0
- AlicenseAqualityDmaintenanceNon-custodial on-chain escrow + AI arbitration for agent-to-agent USDC payments on Base. Seven tools wrap a verified EscrowV1 contract — create, deliver, confirm, dispute, resolve — with read-only introspection if no wallet key is provided.72MIT

Grip MCPofficial
AlicenseAqualityDmaintenanceProvides a non-custodial USDC wallet on Base for AI agents, with human-in-the-loop approval for every payment.248MIT
Related MCP Connectors
63 pay-per-call tools for agents: vision, text, data, web, blockchain. USDC on Base via x402.
32 paid x402 endpoints for crypto, Zora & on-chain analysis. 10 MCP tools. USDC on Base.
Pay-per-call data tools for AI agents: crypto signal, web reader, SEO audit. x402 USDC on Base.
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/stipend-sh/stipend'
If you have feedback or need assistance with the MCP directory API, please join our Discord server