npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

mcp-wallet

v0.1.3

Published

A comprehensive Web3 wallet SDK based on the MCP (Model-Context-Protocol) for interacting with Monad and other EVM-compatible blockchains. Designed primarily for MCP-enabled AI assistants with secure key management and multi-chain support.

Readme

MCP Wallet

A comprehensive Web3 wallet SDK based on the MCP (Model-Context-Protocol) for interacting with Monad and other EVM-compatible blockchains. This library provides a secure, feature-rich wallet implementation that can be integrated into any JavaScript/TypeScript application or used directly with AI assistants that support MCP.

中文文档 | MCP Integration Guide

🤖 MCP Integration - Core Features

MCP Wallet is primarily designed to work with MCP-enabled AI assistants. The Model Context Protocol (MCP) is an open standard that enables secure, two-way connections between AI models and external tools like this wallet.

What is MCP?

MCP (Model-Context-Protocol) is a protocol that allows AI models to interact with external tools and services. In the context of this wallet:

  • It enables AI assistants to help users manage their crypto assets securely
  • It provides standardized ways for LLMs to access wallet functionality
  • It maintains security boundaries to protect private keys and sensitive operations

MCP Capabilities

This wallet exposes the following capabilities through MCP:

  1. Read-only operations: Get wallet address, check balances, view transaction history
  2. Preparation operations: Create transaction objects, estimate gas fees, suggest swap routes
  3. Information services: Token price information, network status, chain information
  4. Security-focused design: No direct access to private keys, user confirmation required for transactions

Supported Operations

The MCP Wallet supports the following operations through MCP:

Basic Operations

  • Get wallet address and balance
  • View transaction history
  • Check gas prices
  • Estimate transaction fees

Token Operations

  • View ERC-20 token balances
  • Transfer ERC-20 tokens
  • View ERC-721 (NFT) balances
  • Transfer NFTs
  • Get token prices and market data

DeFi Operations

  • Token swaps via Uniswap
    • MONAD to token swaps
    • Token to token swaps
    • Support for multiple DEX protocols
    • Custom slippage and deadline settings

Cross-chain Operations

  • Bridge assets between chains
    • Support for Across Protocol
    • Support for major EVM chains (Monad, Ethereum, Polygon, Arbitrum, Optimism)
    • Cross-chain token transfers
    • Bridge fee estimation

Transaction Management

  • Create and prepare transactions
  • Gas fee estimation and optimization
  • Transaction status monitoring
  • Transaction history tracking

Security Operations

  • Read-only mode for safe browsing
  • Multi-Party Computation (MPC) support
  • Transaction approval workflows
  • Rate limiting and access controls

Operation Examples

Here are some examples of how to interact with the wallet through natural language prompts:

Basic Operations

"What's my wallet balance?"
"Show me my recent transactions"
"What's the current gas price?"
"Get my wallet address"

Token Operations

"Check my USDC balance"
"Send 100 USDT to 0x123..."
"Show me my NFT collection"
"What's the current price of MONAD?"

DeFi Operations

"Swap 1 MONAD to USDC"
"What's the best rate for swapping 1000 USDT to MONAD?"
"Show me the liquidity pools I'm participating in"
"Calculate slippage for swapping 5 MONAD to USDC"

Cross-chain Operations

"Bridge 1 MONAD from Monad to Ethereum"
"What's the fee for bridging 1000 USDC to Monad?"
"Show available bridge options for MONAD to Optimism"
"Track my cross-chain transfer status"

Transaction Management

"Create a transaction to send 1 MONAD"
"Estimate gas fee for this transfer"
"Check the status of transaction 0x123..."
"Show my pending transactions"

Security Considerations

Key Management

  1. Private Key Protection:

    • Never share private keys or mnemonics with anyone
    • Store keys in secure, encrypted storage
    • Use hardware wallets for large amounts
    • Enable biometric authentication when available
  2. Access Control:

    • Use read-only mode by default
    • Implement role-based access control
    • Set transaction limits
    • Enable multi-signature for high-value transactions
  3. Network Security:

    • Use secure RPC endpoints
    • Implement SSL/TLS for all connections
    • Monitor for suspicious activities
    • Regular security audits

Transaction Safety

  1. Verification Steps:

    • Always verify recipient addresses
    • Double-check transaction amounts
    • Review gas fees before approval
    • Confirm network/chain ID
  2. Smart Contract Safety:

    • Verify contract addresses
    • Review contract permissions
    • Check for audited contracts
    • Use simulation before execution
  3. Approval Management:

    • Review token approvals regularly
    • Set approval limits
    • Revoke unused approvals
    • Monitor approval expiration

MPC Security

  1. Multi-Party Computation:

    • Split key shares securely
    • Use threshold signatures
    • Implement secure key recovery
    • Regular key rotation
  2. Operational Security:

    • Use secure communication channels
    • Implement timeouts
    • Rate limiting
    • Audit logging

AI Assistant Integration

  1. Prompt Safety:

    • Use clear, unambiguous language
    • Avoid sensitive information in prompts
    • Verify AI understanding
    • Review suggested actions
  2. Permission Management:

    • Set operation limits
    • Define allowed actions
    • Implement cooling periods
    • Regular permission review
  3. Transaction Review:

    • Mandatory human verification
    • Clear confirmation dialogs
    • Detailed transaction preview
    • Cancel option always available

Installation

npm install -g mcp-wallet
# or
yarn global add mcp-wallet

Local Installation

npm install mcp-wallet
# or
yarn add mcp-wallet

Running on Cursor

Configuring Cursor 🖥️ Note: Requires Cursor version 0.45.6+

To configure MCP Wallet in Cursor:

  1. Open Cursor Settings
  2. Go to Features > MCP Servers
  3. Click "+ Add New MCP Server"
  4. Enter the following:
    • Name: "mcp-wallet" (or your preferred name)
    • Type: "command"
    • Command: env MCP_RPC_URL=https://rpc.monad.xyz MCP_CHAIN_ID=201 npx -y mcp-wallet-mcp

If you are using Windows, try cmd /c "set MCP_RPC_URL=https://rpc.monad.xyz && set MCP_CHAIN_ID=201 && npx -y mcp-wallet-mcp"

Running on Windsurf

Add this to your ./codeium/windsurf/model_config.json:

{
  "mcpServers": {
    "mcp-server-wallet": {
      "command": "npx",
      "args": ["-y", "mcp-wallet-mcp"],
      "env": {
        "MCP_RPC_URL": "https://rpc.monad.xyz",
        "MCP_CHAIN_ID": "201",
        "MCP_ADDRESS": "YOUR_WALLET_ADDRESS",
        "MCP_MPC_ENABLED": "true"
      }
    }
  }
}

Environment Variables Configuration

The recommended way to configure MCP Wallet is through environment variables:

# Required configuration
export MCP_RPC_URL="https://testnet.rpc.monad.xyz"
export MCP_CHAIN_ID="10143"

# Authentication (choose one)
export MCP_PRIVATE_KEY="0x..." # Private key for signing transactions
# OR
export MCP_MNEMONIC="your twelve word mnemonic phrase here" # Mnemonic for HD wallet
# OR
export MCP_ADDRESS="0x..." # For read-only mode

# Optional configuration
export MCP_MPC_ENABLED="true" # Enable Multi-Party Computation for enhanced security
export MCP_MAX_FEE="50" # Maximum gas fee in GWEI
export MCP_APPROVAL_TIMEOUT="120" # Seconds to wait for transaction approval

CLI Commands

MCP Wallet comes with a command-line interface (CLI) that allows you to interact with the wallet from the terminal:

# Initialize wallet configuration
mcp-wallet init

# Get wallet address
mcp-wallet address

# Get MONAD balance
mcp-wallet balance

# Get token balance
mcp-wallet token-balance 0xTokenContractAddress

# Send MONAD
mcp-wallet send 0xRecipientAddress 0.1

# Send tokens
mcp-wallet send-token 0xTokenContractAddress 0xRecipientAddress 100

# Start MCP server
mcp-wallet serve

Development

# Clone the repository
git clone https://github.com/dushaobindoudou/mcp-wallet.git
cd mcp-wallet

# Install dependencies
npm install

# Run tests
npm test

# Build the package
npm run build

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This project is licensed under the MIT License - see the LICENSE file for details.