Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog
Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

AllMCPs on GitHub (opens in a new tab)
Launched onTiny Startupstinystartups.com
Explore
  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Random discovery New
  • Submit a server
  • Pricing & Boost Boost
Learn
  • Guides hub
  • What is MCP?
  • Install guide
  • Build an MCP server
  • Deploy an MCP server
  • Security guide
  • Troubleshooting
  • MCP for SEO & AEO
  • Protocol versioning
  • Blog & updates
Tools
  • All developer tools
  • Config generator
  • Config validator
  • Config auditor
  • MCP playground
  • Token calculator
  • OpenAPI β†’ MCP
  • Badge generator
For agents
  • REST API docs
  • Trust & traffic Live
  • Remote MCP server SSE β†— (opens in a new tab)
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
Company
  • About
  • Advertise Sponsor
  • Contact
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZoneAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZone
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’° Finance & Fintech
  3. Ethereum Wallet Generator
E
Health: Not checked yetWe have not completed a health check for this listing yet.No health check has run yet.

Ethereum Wallet Generator

User RatingsBe the first to rate and review this MCP server! Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View Repository

Generate Ethereum wallets with BIP39 mnemonics, HD paths, vanity addresses, private key backup

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Client Config & Setup

Choose your client or environment
Target File:~/Library/Application Support/Claude/claude_desktop_config.json
claude_desktop_config.json
{
  "mcpServers": {
    "ethereum-wallet-generator": {
      "command": "npx",
      "args": [
        "-y",
        "ethereum-wallet-generator"
      ]
    }
  }
}

πŸ’‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.

Install Directory Badge Claim listing AlternativesπŸ’° More in Finance & Fintech

Documentation Overview

Ethereum Wallet Toolkit

A collection of Ethereum wallet tools: Python CLI utilities (eth_toolkit.py, wallet.py, keystore.py, sign.py, transaction.py, typed_data.py, validate.py, vanity.py), five Model Context Protocol (MCP) servers exposing wallet functionality to AI assistants, a fully offline single-file HTML wallet (offline.html), and an x402 payment facilitator. See the sections below for each component.

Offline Build - Official Ethereumjs Libraries

This directory contains the build system to create offline1.html using official ethereumjs libraries.

Libraries Used

All libraries are from the official Ethereum ecosystem:

  • @ethereumjs/tx - Transaction signing (legacy + EIP-1559)
  • @ethereumjs/util - Utilities (address validation, checksums, etc.)
  • @ethereumjs/rlp - RLP encoding
  • @ethereumjs/wallet - Wallet utilities
  • ethereum-cryptography - Official cryptographic primitives (secp256k1, keccak256)
  • @scure/bip39 - BIP39 mnemonic (used by ethereumjs)
  • @scure/bip32 - BIP32 HD derivation (used by ethereumjs)

Build Instructions

bash
# Navigate to this directory
cd offline-build

# Install dependencies
npm install

# Build offline1.html
npm run build

The output file offline1.html will be created in the parent directory.

What Gets Bundled

The build process uses esbuild to:

  1. Bundle all ethereumjs libraries and their dependencies
  2. Minify the code for smaller file size
  3. Inline everything into a single HTML file

Typical bundle size: ~400-600 KB (varies by version)

Features

All features match the CLI tool:

  • Wallet Generation - Random keypair generation
  • Mnemonic Support - Create/restore BIP39 mnemonics, derive accounts
  • Vanity Addresses - All vanity options (prefix, suffix, regex, etc.)
  • Message Signing - EIP-191 personal_sign
  • Signature Verification - Recover signer from signature
  • Validation - Address and key validation
  • Keystore - V3 keystore encrypt/decrypt (PBKDF2)
  • Transactions - Sign legacy and EIP-1559 transactions offline
  • EIP-712 - Typed data signing and verification

Security

  • The generated HTML file is completely self-contained
  • No external network requests
  • Can be saved and used on an air-gapped machine
  • Uses official, audited Ethereum libraries

MCP Servers

This repository includes 5 Model Context Protocol (MCP) servers that expose Ethereum wallet functionality to AI assistants like Claude.

Documentation

  • Prompt Examples - Real-world prompts for interacting with the servers
  • Testing Guide - How to run and write tests
  • Integration Guide - Setting up with Claude Desktop and other tools
  • Workflows & Recipes - Common workflows combining multiple servers

Overview

ServerPurposeToolsTests
ethereum-wallet-mcpWallet generation, HD wallets, mnemonics6111
keystore-mcp-serverEncrypted keystore files (Web3 Secret Storage)974
signing-mcp-serverMessage signing, EIP-191, EIP-7121234
transaction-mcp-serverTransaction building, encoding, signing1565
validation-mcp-serverAddress/key validation, checksums, hashing1564

Total: 57 tools, 348 tests

Quick Start

Installation

Each server is a standalone Python package:

bash
# Install all servers
pip install -e ./ethereum-wallet-mcp
pip install -e ./keystore-mcp-server
pip install -e ./signing-mcp-server
pip install -e ./transaction-mcp-server
pip install -e ./validation-mcp-server

Claude Desktop Configuration

Add to your claude_desktop_config.json:

config.json
{
  "mcpServers": {
    "ethereum-wallet": {
      "command": "ethereum-wallet-mcp"
    },
    "keystore": {
      "command": "keystore-mcp-server"
    },
    "signing": {
      "command": "signing-mcp-server"
    },
    "transaction": {
      "command": "transaction-mcp-server"
    },
    "validation": {
      "command": "validation-mcp-server"
    }
  }
}

Server Details

ethereum-wallet-mcp

Wallet Generation & HD Wallets

Tools:

  • generate_wallet - Random Ethereum wallet
  • generate_wallet_with_mnemonic - BIP39 mnemonic wallet
  • restore_wallet_from_mnemonic - Restore from seed phrase
  • restore_wallet_from_private_key - Restore from private key
  • derive_multiple_accounts - HD wallet derivation
  • generate_vanity_address - Custom prefix/suffix addresses

Resources:

  • wallet://documentation/bip39 - BIP39 spec
  • wallet://documentation/derivation-paths - HD paths
  • wallet://wordlist/{language} - BIP39 wordlists

keystore-mcp-server

Encrypted Keystore Files (Web3 Secret Storage)

Tools:

  • encrypt_keystore - Create encrypted keystore from private key
  • decrypt_keystore - Decrypt keystore to get private key
  • change_keystore_password - Re-encrypt with new password
  • validate_keystore - Verify keystore structure
  • get_keystore_address - Extract address without decryption
  • generate_encrypted_wallet - Create new wallet as keystore
  • read_keystore_file - Read keystore from filesystem
  • write_keystore_file - Save keystore to filesystem

Supports:

  • scrypt and pbkdf2 key derivation
  • AES-128-CTR encryption
  • UUID and version validation

signing-mcp-server

Message & Data Signing

Tools:

  • sign_message - EIP-191 personal_sign
  • verify_message - Verify signed message
  • hash_message - Create message hash
  • sign_typed_data - EIP-712 structured data
  • verify_typed_data - Verify typed data signature
  • encode_typed_data - Encode without signing
  • recover_signer - Recover address from signature

transaction-mcp-server

Transaction Building & Signing

Tools:

  • build_transaction - Create unsigned transaction
  • sign_transaction - Sign with private key
  • decode_transaction - Parse raw transaction
  • encode_transaction - RLP encode transaction
  • estimate_gas - Calculate gas requirements
  • calculate_transaction_hash - Pre-signing hash
  • build_eip1559_transaction - Type 2 transactions
  • build_legacy_transaction - Type 0 transactions
  • build_access_list_transaction - Type 1 transactions
  • serialize_transaction - Convert to wire format
  • parse_transaction_input - Decode calldata
  • validate_transaction - Check transaction validity

validation-mcp-server

Validation & Cryptographic Utilities

Tools:

  • validate_address - EIP-55 checksum validation
  • validate_private_key - Key range checking
  • to_checksum_address - Convert to checksummed
  • derive_address_from_private_key - Key β†’ address
  • derive_address_from_public_key - Pubkey β†’ address
  • validate_signature - Check v, r, s values
  • validate_hex_data - Hex string validation
  • compare_addresses - Address equality
  • batch_validate_addresses - Bulk validation
  • generate_vanity_check - Pattern matching
  • keccak256_hash - Compute Keccak-256
  • encode_function_selector - Signature β†’ selector
  • decode_function_selector - Lookup selectors
  • validate_ens_name - ENS format validation
  • calculate_storage_slot - Storage slot computation

Resources:

  • validation://eip55-specification - EIP-55 docs
  • validation://secp256k1-constants - Curve params
  • validation://function-selectors-db - 500+ selectors
  • validation://address-patterns - Known patterns

Testing

Run all server tests:

bash
# Individual servers
pytest ethereum-wallet-mcp/tests/ -v
pytest keystore-mcp-server/tests/ -v
pytest signing-mcp-server/tests/ -v
pytest transaction-mcp-server/tests/ -v
pytest validation-mcp-server/tests/ -v

# All at once
./run_all_tests.sh

Architecture

All servers follow a consistent pattern:

Code
server-name/
β”œβ”€β”€ pyproject.toml          # Package config
β”œβ”€β”€ README.md               # Server docs
β”œβ”€β”€ src/
β”‚   └── package_name/
β”‚       β”œβ”€β”€ __init__.py
β”‚       β”œβ”€β”€ __main__.py     # Entry point
β”‚       β”œβ”€β”€ server.py       # MCP server setup
β”‚       β”œβ”€β”€ tools/          # Tool implementations
β”‚       β”œβ”€β”€ resources/      # Static resources
β”‚       └── prompts/        # Interactive prompts
└── tests/
    └── test_*.py           # Pytest tests

Each tool has:

  1. An *_impl() function with pure business logic (for testing)
  2. A registered async wrapper for MCP compatibility

Security Considerations

  • No network calls - All operations are offline
  • No key storage - Keys are passed through, never persisted
  • Auditable - All code uses official Ethereum Foundation libraries
  • Test coverage - 348 tests across all servers

⚠️ Warning: These tools handle sensitive cryptographic material. Review the code and understand the implications before using with real assets.

Dependencies

All servers use official Ethereum Foundation libraries:

  • eth-account - Key generation, signing
  • eth-keys - ECDSA operations
  • eth-utils - Utility functions
  • eth-rlp - RLP encoding
  • mnemonic - BIP39 implementation
  • mcp - Model Context Protocol SDK

License

All rights reserved. See LICENSE.

Prompt Examples for Ethereum Wallet MCP Servers

This guide provides real-world prompt examples for interacting with the Ethereum Wallet Toolkit MCP servers through AI assistants like Claude.

Table of Contents

  • Wallet Operations
  • Message Signing
  • EIP-712 Typed Data
  • Transaction Operations
  • Keystore Management
  • Validation & Utilities
  • Advanced Workflows

Wallet Operations

Generate a New Wallet

Simple:

Code
Generate a new Ethereum wallet for me

With mnemonic:

Code
Create a new Ethereum wallet with a 24-word seed phrase

Read the full README β†’View source on GitHub β†’

Related MCP Servers

View all in Finance & Fintech View all alternatives
  • Stripe AI logoStripe AI

    MCP server integrating with Stripe - tools for customers, products, payments, and more.

    πŸ’° Finance & Fintech0 views
    Compare vs Stripe AI β†’
  • Brazilian Central Bank (BCB) MCP logoBrazilian Central Bank (BCB) MCP
    Verified

    MCP server for the Brazilian Central Bank (Banco Central do Brasil): SGS time series (Selic, IPCA, exchange rates, GDP and 139 curated, source-verified indicators), the Focus market-expectations survey and PTAX official exchange rates. 15 tools, 3 resources and 3 prompts, with provenance metadata on every response. Runs locally via npx (stdio) or through the hosted endpoint at https://bcb.sidneybissoli.com/mcp β€” no API key or signup required.

    πŸ’° Finance & Fintech7 views
    Compare vs Brazilian Central Bank (BCB) MCP β†’
  • FlashBank logoFlashBank

    Fixed-fee P2P term loans (no oracles) and flash loans on Ethereum, Base, Arbitrum and Sepolia.

    πŸ’° Finance & Fintech1 views
    Compare vs FlashBank β†’
  • Markifact: AI Performance Marketing logoMarkifact: AI Performance Marketing

    AI marketing agent for Google Ads, Meta, GA4, TikTok, LinkedIn, Shopify, HubSpot and more.

    πŸ’° Finance & Fintech1 views
    Compare vs Markifact: AI Performance Marketing β†’

Reviews

No reviews yet β€” be the first to share how this listing worked for you.

Frequently Asked Questions about Ethereum Wallet Generator

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "ethereum-wallet-generator": { "command": "npx", "args": ["-y", "Ethereum Wallet Generator"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewEthereum Wallet Generator AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/ethereum-wallet-generator?style=directory)](https://allmcps.com/mcp/ethereum-wallet-generator)
HTML Embed
<a href="https://allmcps.com/mcp/ethereum-wallet-generator"><img src="https://allmcps.com/api/badge/ethereum-wallet-generator?style=directory" alt="Ethereum Wallet Generator on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’°Finance & Fintech
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
Last updatedSep 7, 2026
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
27Quality signal: Emerging Β· 27/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to unlock edit access and the Official badge and attach your website β€” proof is checked automatically, then reviewed by our team.

Free dofollow backlink: add your website and place the AllMCPs badge on it β€” no claim needed. We detect it automatically and keep it verified as long as the badge stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’° Finance & Fintech β†’Best MCP servers for Finance & Fintech β†’Alternatives to Ethereum Wallet Generator β†’Install in Claude DesktopInstall in CursorInstall in VS Code