Skip to main content

Model Context Protocol server that lets an AI agent spend from an Exfer wallet — typed tools over exfer-walletd, with no per-transaction human approval

Project description

exfer-mcp

MCP server for the Exfer blockchain — gives an AI agent (Claude Code, Claude Desktop, Cursor, any MCP host) a typed wallet it can actually use: balances, payments, signed price quotes, and HTLC settlement on mainnet.

What it's for, proven: two agents settling a real service on mainnet, end to end — a signed EXFER-QUOTE, an on-chain payment that binds datum = quote_id, then atomic delivery the instant the chain proves it to depth. No human in the loop. See exfer-honor/examples/mainnet-loop.

⚠️ The agent can spend this wallet on its own — there is no per-transaction human approval. Unlike a normal wallet (where you click "confirm" on each send), anything that can reach this MCP server — your agent, or a prompt-injection of it — can move the funds. Keep only a float you're OK losing, and/or set spend caps (WALLETD_SPEND_CAP_PER_TX, WALLETD_SPEND_CAP_PER_PERIOD + WALLETD_SPEND_CAP_PERIOD_SECS, in exfers).

Set it up

Two ways — they end the same place. Either way, you restart your MCP host once at the end: servers load at startup, so a host (or an agent inside one) can't connect to a server it just registered in the same session. That's normal, not a failure.

Hand it to your coding agent

Paste the block below to your agent (Claude Code, Cursor, Codex, or Claude Desktop with a terminal). It verifies the package, pre-warms the download, registers the server, then tells you how to do the one restart.

Set up the exfer MCP server for me. It's a young project that gives an AI agent a spendable Exfer-mainnet wallet with no per-transaction approval, so be careful and stop before any funding step. Check provenance first: package exfer-mcp on PyPI, repo github.com/exfer-stack/exfer-mcp; in managed mode it downloads the exfer-walletd binary from exfer-stack/exfer-walletd releases and runs it only if the SHA-256 matches a digest baked into the package. (github.com/ahuman-exfer/exfer is the separate Exfer blockchain repo — not this MCP.) Frequent recent releases are expected for a young project; pin the version below. Everything before funding is read-only.

  1. Install uv if it's missing (it provides uvx): macOS/Linux curl -LsSf https://astral.sh/uv/install.sh | sh; Windows irm https://astral.sh/uv/install.ps1 | iex.
  2. Pre-warm first — this is what prevents a host startup-timeout. Run uvx exfer-mcp==0.5.0 --prewarm. It caches the package and downloads + checksum-verifies the walletd binary, then exits — no secrets, nothing to fund. Wait for walletd binary ready. (First run can take ~1 min on a slow link; that's the download you're moving off the host's startup path.)
  3. Register an MCP server named exfer: command uvx, args ["exfer-mcp==0.5.0"], env WALLETD_KEYSTORE_PASSPHRASE = a fresh secret from uv run --no-project python -c "import secrets; print(secrets.token_urlsafe(24))". Inject it directly so the literal never appears in this chat. Claude Code: claude mcp add exfer -e WALLETD_KEYSTORE_PASSPHRASE="$(uv run --no-project python -c 'import secrets; print(secrets.token_urlsafe(24))')" -- uvx exfer-mcp==0.5.0. Claude Desktop / Cursor / Codex: put that block under mcpServers in the host config — for Codex (~/.codex/config.toml) also add startup_timeout_sec = 120 under [mcp_servers.exfer]. To confirm it registered, check the config simply has the env key — do NOT run claude mcp get or mcp list -v; they print the passphrase straight back into this chat.
  4. Stop and tell me to restart. You can't hot-reload MCP servers into your own running session, so don't try to call any exfer_* tool yet. Tell me exactly how to reload for my host — Claude Code: quit and relaunch (or /mcp → reconnect exfer); Codex / Cursor / Claude Desktop: fully quit and reopen — then wait for me to come back.
  5. After I've restarted, call exfer_get_block_height (a height means it's live; the first call takes ~15s while it creates the keystore) and then give me a receive address via exfer_generate_address.
  6. Recovery phrase: first run writes 24 words to <WALLETD_DATADIR>/RECOVERY_PHRASE.txt (mode 0600; default ~/.exfer-walletd-mcp, Windows %USERPROFILE%\.exfer-walletd-mcp). On Windows 0600 is POSIX-only, so make sure that file isn't in a synced/backed-up folder. Tell me to copy it offline and delete the file — don't print it here. Losing it and the passphrase makes the wallet unrecoverable.

Or do it yourself

1. Install uv (it provides uvx): macOS/Linux curl -LsSf https://astral.sh/uv/install.sh | sh; Windows irm https://astral.sh/uv/install.ps1 | iex.

2. Pre-warm — caches the package + the SHA-256-verified walletd binary off the host's startup path (no secrets):

uvx exfer-mcp==0.5.0 --prewarm

3. Pick a keystore passphrase (you choose it; it's stored in the host config and unlocks/creates the wallet). A strong random one: uv run --no-project python -c "import secrets; print(secrets.token_urlsafe(24))".

4. Register the server (managed mode — passphrase only):

  • Claude Code: claude mcp add exfer -e WALLETD_KEYSTORE_PASSPHRASE='<passphrase>' -- uvx exfer-mcp==0.5.0
  • Claude Desktop / Cursor / Codex: add under mcpServers in the host config (Codex: also startup_timeout_sec = 120):
    "exfer": { "command": "uvx", "args": ["exfer-mcp==0.5.0"], "env": { "WALLETD_KEYSTORE_PASSPHRASE": "<passphrase>" } }
    

5. Restart / reload the MCP host, then call exfer_get_block_height (a height = live) and exfer_generate_address (your receive address).

6. Back up the recovery phrase at ~/.exfer-walletd-mcp/RECOVERY_PHRASE.txt (mode 0600): copy it offline, then delete the file. It plus the passphrase are the only way to recover the wallet.

(Pin the version — uvx otherwise resolves+caches whatever is latest. pip install exfer-mcp also works; Python ≥ 3.10, pulls the exfer SDK + mcp + psutil.)

Installing a prerelease (e.g. the cross-chain swap on-ramp shipped first in 0.6.0a1): pin the exact prerelease and pass --prerelease=allow, because it depends on a prerelease of the exfer SDK that resolvers skip by default. Replace the version in every command above, e.g.:

uvx --prerelease=allow exfer-mcp==0.6.0a1 --prewarm
claude mcp add exfer -e WALLETD_KEYSTORE_PASSPHRASE='<passphrase>' -- uvx --prerelease=allow exfer-mcp==0.6.0a1

Config-file hosts: add "--prerelease=allow" as the first entry in args. (Stable releases need none of this.)

If a shell/host doesn't forward the trailing --prewarm flag to the tool, set EXFER_MCP_PREWARM=1 in the environment instead — it triggers the same prewarm-and-exit and is typo-proof.

Configure

exfer-mcp needs an exfer-walletd wallet daemon (it holds the keys and signs/broadcasts). Setting WALLETD_URL is the mode switch:

Managed (zero-setup) — recommended

Leave WALLETD_URL unset. exfer-mcp spawns + supervises its own walletd against Exfer's public mainnet node + indexer, and obtains the walletd binary automatically: EXFER_WALLETD_BINexfer-walletd on PATH → else it downloads the prebuilt binary for your platform and verifies it against a SHA-256 baked into this exfer-mcp release (not a co-located checksum) before running it, re-checking on every run (cached 0o700 in ~/.cache/exfer-mcp/walletd/). You only provide a passphrase:

{
  "mcpServers": {
    "exfer": {
      "command": "uvx",
      "args": ["exfer-mcp==0.5.0"],
      "env": { "WALLETD_KEYSTORE_PASSPHRASE": "<a strong passphrase>" }
    }
  }
}

First run creates a seeded keystore and prints its 24-word recovery phrase to stderr once — that's the only backup. Keystore + datadir live in WALLETD_DATADIR (default ~/.exfer-walletd-mcp) and persist across restarts.

Claude Code one-liner:

claude mcp add exfer -e WALLETD_KEYSTORE_PASSPHRASE='<passphrase>' -- uvx exfer-mcp==0.5.0

External — connect to a walletd you run

Set WALLETD_URL + WALLETD_AUTH_TOKEN (and WALLETD_FINGERPRINT for https:// with a self-signed cert):

{
  "mcpServers": {
    "exfer": {
      "command": "uvx",
      "args": ["exfer-mcp==0.5.0"],
      "env": {
        "WALLETD_URL": "http://127.0.0.1:7448",
        "WALLETD_AUTH_TOKEN": "<walletd token>"
      }
    }
  }
}

Environment reference

Variable Mode Default Meaning
WALLETD_KEYSTORE_PASSPHRASE managed (required) unlocks / creates the managed keystore
EXFER_WALLETD_BIN managed (optional) auto: PATH or download path to a walletd binary (skips auto-download)
EXFER_WALLETD_VERSION managed (optional) pinned walletd release to auto-download
WALLETD_DATADIR managed (optional) ~/.exfer-walletd-mcp keystore + tokens; give each concurrent session its own
EXFER_NODE_RPC / EXFER_INDEXER_RPC managed (optional) public mainnet upstream node(s) / indexer ("" indexer = disable)
EXFER_ENABLE_SWAP managed (optional) off 1 turns on the cross-chain on-ramp (swap_* / bsc_* tools) using the community pool default. Off by default — swap moves real cross-chain funds
EXFER_SWAP_POOL / EXFER_SWAP_POOL_CA managed (optional) community pool point the swap at your own pool URL + its CA (PEM). Overrides the default; a custom pool never uses the bundled CA
WALLETD_URL + WALLETD_AUTH_TOKEN external (required) walletd URL + bearer token
WALLETD_FINGERPRINT external (optional) sha256:<hex> for self-signed TLS

Running multiple agent sessions at once? Managed mode is one wallet per datadir — give each session a distinct WALLETD_DATADIR, or run one shared walletd and connect every session in external mode.

What you get (35 tools)

  • Wallet & chain: generate_address, list_addresses, get_balance, get_block_height
  • Payments: simulate_transfer (dry-run fee), transfer, wait_for_tx, wait_for_payment (push, no polling), payment_uri_encode/_decode
  • Identity & price quotes: sign_message/verify_message, quote_issue/quote_verify (signed EXFER-QUOTE credentials)
  • Conditional payment: htlc_lock/_claim/_reclaim/_status/_list (atomic, hash-time-locked settlement)
  • History: get_address_history (indexer-backed raw activity)
  • Self-funding (earn): earn, earn_probe, earn_status, earn_stop — mine EXFER to your own address with spare CPU/GPU. EXFER is mineable, so an agent can acquire its own starting capital from compute alone (no human, bank, KYC, or pre-funded account). Zero-setup: the prebuilt CPU miner is auto-downloaded and digest-verified on first use (GPU is opt-in via a self-built --features cuda binary at EXFER_AGENT_MINER_BIN). earn_probe tests whether a pool actually accepts your shares and recommends one, so you don't mine blind.
  • On-ramp (cross-chain swap, opt-in): bsc_get_address, bsc_get_balance, swap_pool_info, swap_get_quote, swap_execute, swap_status, swap_list, swap_refund — fund the wallet's BSC address with USDT/BNB and atomically swap into EXFER (and back), so an agent can on-ramp without a human acquiring EXFER for it. Off unless EXFER_ENABLE_SWAP=1 (it moves real cross-chain funds); see the env reference.
  • Meta: check_update (is a newer exfer-mcp on PyPI? read-only, no wallet access)

The intended spend flow is simulate → confirm with the user → transfer → wait — the agent always knows the fee before committing, and the human decides. Note CPU mining at mainnet difficulty is largely symbolic; real earnings want a GPU or a low-difficulty network.

Updating

exfer-mcp never updates itself — silently pulling new code or a new key-handling binary is a supply-chain risk, so an update is always a deliberate step.

  • Check: call exfer_check_update (or ask your agent "is there an exfer-mcp update?"). It reports the latest version, whether your version was yanked (a security recall), and the exact update command — read-only, no wallet access, works even if walletd is down. The server also checks ~once a day on startup and notes a newer/yanked release on stderr. Opt out with EXFER_MCP_NO_UPDATE_CHECK=1.
  • Update: bump the pinned version, optionally run uvx exfer-mcp==<new> --prewarm (a new release may pull a new walletd binary — pre-fetching it keeps the next startup off the timeout path), then reload your host — re-add with uvx exfer-mcp==<new> (Claude Code) or change args in the config file. (Unpinned uvx exfer-mcp: uvx --refresh exfer-mcp. uv tool / pipx: uv tool upgrade / pipx upgrade.) Your wallet keys are never touched by an update.
  • Your wallet survives updates. An update swaps the Python code + the (re-verified) walletd binary only. Your keystore, seed, RECOVERY_PHRASE.txt, and tokens in WALLETD_DATADIR are never read, moved, or deleted — they live in a separate directory from the disposable binary cache (~/.cache/exfer-mcp).

Safety

  • WALLETD_AUTH_TOKEN / WALLETD_KEYSTORE_PASSPHRASE and the WALLETD_DATADIR contents are wallet secrets — full spend authority. The managed walletd binds loopback-only, and exfer-mcp redacts bearer tokens from forwarded logs.
  • No per-call human gate is built in (that's the host's job). Bound the blast radius with walletd spend caps, or keep only a small float.
  • Auto-downloaded walletd binaries are run only after their SHA-256 matches a digest baked into this exfer-mcp release — re-verified on every run, not just first download. The trust anchor is the PyPI package's Trusted-Publishing provenance, not the mutable GitHub release (a co-located SHA256SUMS would be worthless against a release/account compromise). A mismatch or an unpinned walletd version is refused; EXFER_WALLETD_BIN overrides with a binary you built/trust.

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

exfer_mcp-0.6.0a2.tar.gz (73.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

exfer_mcp-0.6.0a2-py3-none-any.whl (68.0 kB view details)

Uploaded Python 3

File details

Details for the file exfer_mcp-0.6.0a2.tar.gz.

File metadata

  • Download URL: exfer_mcp-0.6.0a2.tar.gz
  • Upload date:
  • Size: 73.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.12

File hashes

Hashes for exfer_mcp-0.6.0a2.tar.gz
Algorithm Hash digest
SHA256 489d985721dfcf310d0a65b99ea9935f2da5115ffb76724ff5b145eccd918ede
MD5 af4680dff4b515711b0eb1a43b94ea78
BLAKE2b-256 0d62ecf7a2fae7976509547d3153f79d0ed6f5e3970d4dfb7280500600e2c753

See more details on using hashes here.

File details

Details for the file exfer_mcp-0.6.0a2-py3-none-any.whl.

File metadata

  • Download URL: exfer_mcp-0.6.0a2-py3-none-any.whl
  • Upload date:
  • Size: 68.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.12

File hashes

Hashes for exfer_mcp-0.6.0a2-py3-none-any.whl
Algorithm Hash digest
SHA256 4310f809ba10ef619acc18bf26ead7dfccbfc4d9af05c6da6e9e32c7b545ac5e
MD5 887e18aa5652808ac38e12fbbd7dd284
BLAKE2b-256 c399a85b40df65690094d007abc145329112bc33ba80c0e8fb7df5f5f7aaa031

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page