mcp-wallet
Allows creating and managing Bitcoin wallets and deriving Mainnet P2WPKH (Bech32) addresses. Transfer and balance operations are not currently supported.
Allows creating and managing Ethereum wallets, reading native balances, and autonomously preparing, signing, and broadcasting native ETH transfers via EIP-1559 or legacy transactions.
Allows creating and managing Solana wallets and deriving ed25519 public keys. Transfer and balance operations are not currently supported.
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., "@mcp-walletSend 0.05 ETH to 0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb0"
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.
mcp-wallet
Chain-agnostic MCP wallet interface for durable AI agents with autonomous transfers.
The durable agent runtime is the wallet principal: it can create wallets and independently prepare, sign, and broadcast supported transactions. Mnemonics and private keys remain inside encrypted local custody rather than crossing the model context.
Supported addresses
Chain | Derivation path | Address type |
Bitcoin |
| Mainnet P2WPKH (Bech32) |
Ethereum |
| EIP-55 EVM address |
BNB Smart Chain |
| Same EVM address |
Solana |
| Base58 ed25519 public key |
TRON |
| Base58Check account address |
HyperEVM |
| Same EVM address |
HyperCore |
| Same EVM account identity |
Related MCP server: agenti
Current scope
Create and import accounts
List accounts and derived addresses
Show or delete an account
AES-256-GCM encrypted mnemonic storage
Agent-owned wallet creation through local MCP without exposing the mnemonic
Native balance reads and autonomous native Ethereum, BNB Smart Chain, and HyperEVM transfers
CAIP-2 chain identifiers and runtime capability discovery through a generic transfer interface
Optional agent-configured policy safeguards; no mandatory human approval
Local stdio MCP transport with no listening network port
Chain-adapter boundary for future extensions
Not implemented: tokens, calldata, contract calls, swaps, bridges, Bitcoin/Solana/TRON transfers, HyperCore actions, indexed history, or automatic testnet selection.
Setup
Requirements: Linux with the util-linux flock command, and Node.js 22 or newer. Wallet and transfer state use kernel-managed advisory locks so crashes cannot leave stale ownership metadata or permit PID-reuse/ABA lock races.
npm install
npm run buildGenerate a development master key without printing it:
export CRYPTO_MCP_MASTER_KEY="$(node -e "process.stdout.write(require('node:crypto').randomBytes(32).toString('base64'))")"Optional wallet-file override:
export CRYPTO_MCP_WALLET_FILE="$HOME/.crypto-mcp/wallet.json"The default wallet file is $HOME/.crypto-mcp/wallet.json and is written with mode 0600.
Maintenance CLI
Create an account:
npm run wallet -- account create --label primaryThe generated mnemonic is printed exactly once. Transfer it immediately to an appropriate offline backup or password manager; do not place it in shell history, logs, chat, source control, or MCP requests.
Import from stdin:
password-manager-command | npm run wallet -- account import --label importedManage public account data:
npm run wallet -- account list
npm run wallet -- account show <account-id>
npm run wallet -- account delete <account-id>The CLI retains explicit lifecycle commands for debugging, recovery, and manual maintenance, but it is not part of the agent's authorization path:
npm run wallet -- transfer status <request-id>
npm run wallet -- transfer approve <request-id> --digest sha256:<digest>
npm run wallet -- transfer sign <request-id>
npm run wallet -- transfer broadcast <request-id>Approval is bound to the account, chain ID, recipient, raw amount, nonce, fee fields, expiry, and idempotency key. Signing fails if any approved field changes.
Agent wallet MCP server
The local stdio server exposes exactly eight tools:
create_walletlist_accountsget_accountget_addressesget_wallet_capabilitiesget_balancesend_transferget_transfer_status
Start it with process-local wallet configuration:
npm run build
npm run mcpAn MCP client should launch node /absolute/path/to/mcp-wallet/dist/src/mcp/stdio.js and provide CRYPTO_MCP_MASTER_KEY and, optionally, CRYPTO_MCP_WALLET_FILE to that subprocess through external secret injection. Never put the master key in tool arguments, prompts, chat, source control, or ordinary configuration files.
create_wallet generates an encrypted wallet without returning its mnemonic. get_wallet_capabilities advertises the exact configured chains, assets, and operations. get_balance and send_transfer use CAIP-2 chain identifiers such as eip155:1 plus an explicit asset identifier; the current adapter supports only native. Generic tool names do not imply unsupported-chain support: unadvertised chains and assets fail closed. MCP cannot supply RPC URLs, policy overrides, nonces, calldata, raw signing payloads, mnemonics, or private keys, and sanitized results never expose raw signed transactions.
Transfer configuration
Each configured network defaults to full agent authority. Configure the owner-only transfer journal and RPC details in the MCP process environment—not tool arguments:
export CRYPTO_MCP_TRANSFER_FILE="$HOME/.crypto-mcp/transfers.json"
export CRYPTO_MCP_ETHEREUM_RPC_URL="https://your-rpc.example"
export CRYPTO_MCP_ETHEREUM_CHAIN_ID="1"
export CRYPTO_MCP_ETHEREUM_FEE_MODE="eip1559"Equivalent BSC and HYPEREVM variables are supported. Fee mode must be eip1559 or legacy; chain ID is verified against eth_chainId before preparation. Use disposable accounts, test networks, bounded policy values, and non-production funds for initial validation.
An agent may opt into self-imposed safeguards by setting CRYPTO_MCP_TRANSFER_POLICY. Providing it switches to explicit policy configuration; omitted chains are disabled. Policies can set amount, fee, rolling 24-hour value, account, and recipient bounds. These are optional wallet-owner controls, not human approval requirements.
MCP usage examples
These are MCP tool arguments and structured results, not shell commands. Start the stdio server with process-local custody and network configuration before invoking transfer tools.
Create an agent-owned wallet
Tool: create_wallet
{
"label": "primary-agent-wallet"
}The result contains the account ID, label, creation time, and public addresses. It never contains the generated mnemonic or private keys.
Discover supported chains and assets
Tool: get_wallet_capabilities
{}Example result for a configured Ethereum network:
{
"chains": [
{
"chain": "eip155:1",
"family": "evm",
"assets": [{ "asset": "native", "decimals": 18 }],
"operations": ["get_balance", "send_transfer", "get_transfer_status"]
}
]
}Only advertised chain and asset combinations are supported. For example, a configured Sepolia network is identified as eip155:11155111.
Read a balance
Tool: get_balance
{
"accountId": "0190f4f6-7f08-7000-8000-000000000001",
"chain": "eip155:1",
"asset": "native"
}Example result:
{
"accountId": "0190f4f6-7f08-7000-8000-000000000001",
"chain": "eip155:1",
"asset": "native",
"address": "0x9858EfFD232B4033E47d90003D41EC34EcaEda94",
"balance": "1.25",
"balanceBaseUnits": "1250000000000000000",
"decimals": 18
}All amounts are decimal strings. Base-unit values are exact integer strings and are never converted through JavaScript floating point.
Send a transfer
Tool: send_transfer
{
"accountId": "0190f4f6-7f08-7000-8000-000000000001",
"chain": "eip155:1",
"asset": "native",
"to": "0x9858EfFD232B4033E47d90003D41EC34EcaEda94",
"amount": "0.001",
"maxFee": "0.0002",
"idempotencyKey": "pay-invoice-2026-08-07-001"
}The wallet autonomously validates, prepares, binds, signs, journals, broadcasts, and reconciles the transfer. Reusing the same idempotency key with the same request converges on the existing transfer; reusing it with different transfer details fails closed.
Example result fields:
{
"id": "0190f502-f56d-7000-8000-000000000001",
"state": "broadcast",
"accountId": "0190f4f6-7f08-7000-8000-000000000001",
"chain": "eip155:1",
"asset": "native",
"to": "0x9858EfFD232B4033E47d90003D41EC34EcaEda94",
"amount": "0.001",
"amountBaseUnits": "1000000000000000",
"maxFeeBaseUnits": "200000000000000",
"createdAt": "2026-08-07T00:00:00.000Z",
"expiresAt": "2026-08-07T00:05:00.000Z",
"transactionId": "0x0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef"
}Check transfer status
Tool: get_transfer_status
{
"transferId": "0190f502-f56d-7000-8000-000000000001"
}The result uses the same generic transfer shape. A confirmed transfer may also include blockReference; a terminal failure may include a bounded failureCode.
Development
npm run typecheck
npm testThe test suite derives its public BIP-39 vector from fixed entropy rather than storing a mnemonic phrase in repository fixtures.
Library API
import { JsonAccountStore, WalletAccountService } from "crypto-mcp";
const service = new WalletAccountService(
new JsonAccountStore(walletFile),
masterKey,
);
const accounts = await service.listAccounts();MCP wallet creation and sending are autonomous. Secret import/export remains outside model-visible tools; MCP never accepts or returns mnemonics, seeds, private keys, master keys, or raw signed transactions.
See docs/security.md for the custody boundary and current limitations.
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
- AlicenseBqualityAmaintenanceSelf-hosted wallet MCP server for AI agents. Provides 42 tools for multi-chain crypto operations: transfers, token management, DeFi (swap, lend, stake, bridge, perp), NFT, smart contracts, and x402 payments. Supports EVM and Solana with policy engine, spending limits, and human approval.Last updated6029MIT
- Alicense-qualityDmaintenanceEnables any MCP-compatible LLM client to autonomously hold, spend, earn, and receive cryptocurrency using native MCP tools, no code required.Last updated270ISC
- Alicense-qualityAmaintenanceSelf-hosted MCP server enabling AI agents to manage EVM wallets, check balances, swap tokens, and securely execute transactions via 1Claw Intents without exposing private keys.Last updatedMIT
- Flicense-qualityDmaintenanceAI-native Solana wallet CLI with scoped MCP server, enabling AI agents to manage wallets with granular permissions, spend limits, and tamper-evident audit logging.Last updated5
Related MCP Connectors
Native Solana staking for AI agents. 26 MCP tools, one-shot signing, webhooks.
MCP server connecting AI agents to non-custodial staking data across 130+ networks.
TPermanent memory layer for AI agents. Mint moments to the Polygon blockchain via MCP.
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/matt-scientist/mcp-wallet'
If you have feedback or need assistance with the MCP directory API, please join our Discord server