B

Base Wallet

Lightweight blockchain wallet interaction framework using Viem on Base Sepolia testnet, generating random wallet clients and exposing blockchain actions via std

Base·No reviews yet
Repo
Share:

About

Lightweight blockchain wallet interaction framework using Viem on Base Sepolia testnet, generating random wallet clients and exposing blockchain actions via stdio transport.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about Base Wallet.

What is the Base Wallet MCP and what does it do?
The Base Wallet MCP is a lightweight framework for blockchain wallet interaction. It uses Viem on the Base Sepolia testnet to generate random wallet clients and expose blockchain actions via the stdio transport.
How can I install the Base Wallet MCP in a client like Cline?
Installation in a client like Cline typically involves adding the Base Wallet MCP's repository URL and specific configuration, as detailed in the client's documentation. The exact steps depend on the client's interface and capabilities.
Does the Base Wallet MCP require an API key or other credentials?
No, the Base Wallet MCP does not require an API key, OAuth, or any other credentials for its operation. It is configured with an authentication type of 'none'.
What kind of blockchain actions can I perform with the Base Wallet MCP?
The Base Wallet MCP exposes blockchain actions through its stdio transport, enabling interactions typical of a lightweight wallet framework built on Viem and the Base Sepolia testnet. Specific actions depend on the Viem capabilities implemented.
What is a prerequisite for using the Base Wallet MCP?
A key prerequisite for using the Base Wallet MCP is an environment compatible with the stdio transport. It also requires an understanding of blockchain interactions on the Base Sepolia testnet.

Install Base Wallet

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "base-wallet": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-base-wallet"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "base-wallet": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-base-wallet"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "base-wallet": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-base-wallet"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.