Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
aibtcdev avatar

Aibtc Bitcoin Wallet

  • 52 installs
  • 10 repo stars
  • Updated August 4, 2026
  • aibtcdev/aibtc-mcp-server

aibtc-bitcoin-wallet is a Claude Code skill that gives an AI agent a Bitcoin L1 wallet with optional Stacks L2 DeFi and Pillar smart-wallet capabilities.

About

aibtc-bitcoin-wallet is a Claude Code skill that gives an AI agent a Bitcoin L1 wallet to check balances, estimate fees, send BTC, and manage UTXOs. It is backed by the @aibtc/mcp-server MCP server and extends to Stacks L2 DeFi and Pillar sBTC smart wallets. It also exposes message-signing tools for Bitcoin, Stacks, and Nostr. Wallets are stored encrypted locally and must be unlocked before transactions.

  • Gives agents a Bitcoin L1 wallet: check balances, send BTC, manage UTXOs
  • Extends to Stacks L2 DeFi (STX, DEX swaps, lending) and Pillar sBTC smart wallets
  • Backed by the @aibtc/mcp-server MCP; supports message signing (BIP-137/322, Schnorr, Nostr)

Aibtc Bitcoin Wallet by the numbers

  • 52 all-time installs (skills.sh)
  • Ranked #206 of 479 Web3 & Blockchain skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

aibtc-bitcoin-wallet capabilities & compatibility

Free skill/MCP; on-chain transactions cost Bitcoin/Stacks network fees

Capabilities
bitcoin wallet · send btc · utxo management · message signing · stacks defi
Use cases
orchestration
IDEs
vscode
Runs
Runs locally
Pricing
Free
From the docs

What aibtc-bitcoin-wallet says it does

Bitcoin L1 wallet for agents - check balances, send BTC, manage UTXOs.
SKILL.md
A skill for managing Bitcoin L1 wallets with optional Pillar smart wallet and Stacks L2 DeFi capabilities.
SKILL.md
npx skills add https://github.com/aibtcdev/aibtc-mcp-server --skill aibtc-bitcoin-wallet

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs52
repo stars10
Last updatedAugust 4, 2026
Repositoryaibtcdev/aibtc-mcp-server

What it does

Give an AI agent a Bitcoin L1 wallet with Stacks L2 DeFi and message-signing, via the aibtc MCP server.

Who is it for?

Developers giving an AI agent programmatic Bitcoin and Stacks wallet capabilities

When should I use this skill?

You need an agent to check a Bitcoin balance, send BTC, sign messages, or use Stacks DeFi

What you get

  • Encrypted Bitcoin wallet
  • BTC transfers
  • Stacks L2 DeFi actions

By the numbers

  • 1 BTC = 100,000,000 satoshis
  • Supports 3 fee tiers (fast ~10 min, medium ~30 min, slow ~1 hr)

Files

SKILL.mdMarkdownGitHub ↗

AIBTC Bitcoin Wallet

A skill for managing Bitcoin L1 wallets with optional Pillar smart wallet and Stacks L2 DeFi capabilities.

Install

One-command installation (Claude Code is the default):

npx @aibtc/mcp-server@latest --install

Other MCP clients are selected with a flag:

npx @aibtc/mcp-server@latest --install --cursor     # Cursor
npx @aibtc/mcp-server@latest --install --codex      # OpenAI Codex CLI
npx @aibtc/mcp-server@latest --install --gemini     # Gemini CLI
npx @aibtc/mcp-server@latest --install --windsurf   # Windsurf
npx @aibtc/mcp-server@latest --install --vscode     # VS Code
npx @aibtc/mcp-server@latest --install --desktop    # Claude Desktop

For testnet, add --testnet to any command:

npx @aibtc/mcp-server@latest --install --testnet

Quick Start

Check Balance

Get your Bitcoin balance:

"What's my BTC balance?"

Uses get_btc_balance - returns total, confirmed, and unconfirmed balances.

Check Fees

Get current network fee estimates:

"What are the current Bitcoin fees?"

Uses get_btc_fees - returns fast (~10 min), medium (~30 min), and slow (~1 hr) rates in sat/vB.

Send BTC

Transfer Bitcoin to an address:

"Send 50000 sats to bc1q..."
"Transfer 0.001 BTC with fast fees to bc1q..."

Uses transfer_btc - requires an unlocked wallet.

Wallet Setup

Before sending transactions, set up a wallet:

1. Create new wallet: wallet_create - generates encrypted BIP39 mnemonic 2. Import existing: wallet_import - import from mnemonic phrase 3. Unlock for use: wallet_unlock - required before transactions

Wallets are stored encrypted at ~/.aibtc/.

Tool Reference

Read Operations

ToolDescriptionParameters
get_btc_balanceGet BTC balanceaddress (optional; requires unlocked wallet if omitted)
get_btc_feesGet fee estimatesNone
get_btc_utxosList UTXOsaddress (optional; requires unlocked wallet if omitted), confirmedOnly

Write Operations (Wallet Required)

ToolDescriptionParameters
transfer_btcSend BTCrecipient, amount (sats), feeRate

Wallet Management

ToolDescription
wallet_createGenerate new encrypted wallet
wallet_importImport wallet from mnemonic
wallet_unlockUnlock wallet for transactions
wallet_lockLock wallet (clear from memory)
wallet_listList available wallets
wallet_switchSwitch active wallet
wallet_statusGet wallet/session status

Message Signing

ToolDescriptionParameters
sip018_signSign structured Clarity data (SIP-018)message, domain
sip018_verifyVerify SIP-018 signature and recover signermessageHash, signature, expectedSigner (optional)
sip018_hashCompute SIP-018 hash without signingmessage, domain
stacks_sign_messageSign plain text with Stacks prefix (SIWS-compatible)message
stacks_verify_messageVerify Stacks message signature and recover signermessage, signature, expectedSigner (optional)
btc_sign_messageSign plain text with Bitcoin key (BIP-137/BIP-322)message, addressType (optional)
btc_verify_messageVerify Bitcoin message signature (auto-detects BIP-137/BIP-322)message, signature, address (optional)
nostr_sign_eventSign a Nostr event (NIP-01) with BIP-340 Schnorr using NIP-06 derived key by default (m/44'/1237'/0'/0/0)kind, content, tags (optional), created_at (optional), keySource ("nostr" default via NIP-06 path, "taproot" for P2TR key, "segwit" for P2WPKH key)
schnorr_sign_digestSign a raw 32-byte digest with Schnorr/BIP-340digest, confirmBlindSign, auxRand (optional)
schnorr_verify_digestVerify a BIP-340 Schnorr signature over a digestdigest, signature, publicKey

Units and Addresses

Amounts: Always in satoshis (1 BTC = 100,000,000 satoshis)

Addresses:

  • Mainnet: bc1... (native SegWit)
  • Testnet: tb1...

Fee Rates: "fast", "medium", "slow", or custom sat/vB number

Example Workflows

Daily Balance Check

1. "What's my BTC balance?"
2. "Show my recent UTXOs"
3. "What are current fees?"

Send Payment

1. "Unlock my wallet" (provide password)
2. "Send 100000 sats to bc1qxyz... with medium fees"
3. "Lock my wallet"

Multi-Wallet Management

1. "List my wallets"
2. "Switch to trading wallet"
3. "Unlock it"
4. "Check balance"

Progressive Layers

This skill focuses on Bitcoin L1. Additional capabilities are organized by layer:

Stacks L2 (Layer 2)

Bitcoin L2 with smart contracts and DeFi:

  • STX token transfers
  • ALEX DEX token swaps
  • Zest Protocol lending/borrowing
  • x402 paid API endpoints (AI, storage, utilities) — safe-by-default with probe-before-pay workflow

See: references/stacks-defi.md

Pillar Smart Wallet (Layer 3)

sBTC smart wallet with yield automation:

  • Passkey or agent-signed transactions
  • Send to BNS names (alice.btc)
  • Auto-boost yield via Zest Protocol

See: references/pillar-wallet.md

Bitcoin Inscriptions

Inscribe and retrieve digital artifacts on Bitcoin:

  • Commit-reveal inscription workflow
  • Get inscription content and metadata
  • Protect ordinal UTXOs from accidental spending

See: references/inscription-workflow.md

x402 Paid APIs

Pay-per-use APIs with automatic micropayments on Stacks L2:

  • Discover available endpoints with list_x402_endpoints
  • Check cost before paying with probe_x402_endpoint
  • Execute endpoints with execute_x402_endpoint (safe-by-default — probes first)
  • Send inbox messages with send_inbox_message_direct (use this instead of execute_x402_endpoint for inbox)
  • Build new x402 APIs with scaffold_x402_endpoint and scaffold_x402_ai_endpoint

Always probe before executing paid endpoints. Never call execute_x402_endpoint with autoApprove: true without checking cost first.

send_inbox_message_direct — dedicated tool for aibtc.com inbox messages:

  • Parameters: recipientBtcAddress (bc1...), recipientStxAddress (SP...), content (max 500 chars)
  • Direct (non-sponsored) payment: signs a standard sBTC transfer and settles through the x402 facilitator — no relay in the middle
  • Sender pays BOTH the sBTC message cost AND its own STX gas; requires an unlocked wallet holding sBTC and STX (mainnet only)
  • Implements the full x402 v2 payment flow with a balance pre-check
  • Note: the older sponsored send_inbox_message tool is deprecated and no longer sends — use this tool instead

See: references/stacks-defi.md for endpoint catalog See: references/x402-inbox.md for inbox-specific flow details

Genesis Lifecycle

Agent identity and reputation on Bitcoin and Stacks:

  • L0: Local agent key generation
  • L1: Dual-chain plain-message signatures (btc_sign_message + stacks_sign_message)
  • L2: X claim + BTC airdrop activation
  • L3: On-chain identity registration via ERC-8004 (register_identity)
  • L4: Reputation bootstrapping (get_reputation, give_feedback)
  • Active: 5-minute check-ins to maintain reputation and liveness

See: references/genesis-lifecycle.md

Troubleshooting

"Wallet not unlocked"

Run wallet_unlock with your password before sending transactions.

"Insufficient balance"

Check get_btc_balance - you need enough BTC for amount + fees.

"Invalid address"

Ensure address matches network:

  • Mainnet: starts with bc1
  • Testnet: starts with tb1

See: references/troubleshooting.md

More Information

  • CLAUDE.md - Full tool documentation
  • GitHub - Source code
  • npm - Package

---

This skill follows the [Agent Skills](https://agentskills.io) open specification.

Related skills

FAQ

How is it installed?

Via one command: npx @aibtc/mcp-server@latest --install, with flags for Cursor, Codex, Gemini CLI, Windsurf, VS Code, and Claude Desktop.

Where are wallets stored?

Wallets are stored encrypted at ~/.aibtc/ and must be unlocked before transactions.

Web3 & Blockchainagentsautomation

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.