WalletMCP - Solana Blockchain MCP Server

by paulfruitful

315 downloads
Not rated
GitHub

About

A Simple MCP Server For Interacting With Solana Wallets

Details

Author
paulfruitful
Downloads
315
Categories
Other

- Retrieve wallet transactions and SOL balances.
- Access program logs from the Solana blockchain.
- List and close BPF Upgradeable Loader buffers (claim unused rents).
- Send SOL transactions programmatically.
- Fully MCP-compliant tool definitions using Zod for schema validation.

Clone the repository, install dependencies with npm install, and build the server with npm run build. Then configure it as an MCP server in Claude Desktop by editing the claude_desktop_config.json file and adding the server with the command node and the path to the built index.js file.

WalletMCP - Solana Blockchain MCP Server

WalletMCP is a Model Context Protocol (MCP) server implementation for interacting with the Solana blockchain.
It exposes developer-friendly tools for working with wallets, transactions, program buffers, logs, and SOL transfers through MCP-compatible interfaces.

πŸ“Ί Demo Video

WalletMCP Demo
<br/>
Click the image above to watch the demo video

🧠 Features

- πŸ” Retrieve wallet transactions and SOL balances.
- πŸ“œ Access program logs from the Solana blockchain.
- 🧾 Claims Unused Rents (List and close BPF Upgradeable Loader buffers).
- πŸ’Έ Send SOL transactions programmatically.
- 🧩 Fully MCP-compliant tool definitions using Zod for schema validation.

πŸ”§ Technologies Used

- Solana Web3.js SDK – Solana blockchain interaction
- Model Context Protocol (MCP) – Protocol for tool registration
- Zod – Input validation
- TypeScript – Strong typing and modern tooling

πŸ“‹ Requirements

- Node.js v16+
- Yarn or npm

πŸš€ Getting Started

1. Clone the repository
   git clone https://github.com/paulfruitful/WalletMCP
 
   cd walletMCP
   
2. Install dependencies
   npm install
   

3. Build the MCP Server

   npm run build

Test The Server:


To test the server you can use Claude Desktop MCP Client. Click here to download the desktop application:
Download Claude Desktop

For Claude Desktop

Run the following command this command to open the Claude Desktop Config File

On Windows:

   code $env:AppData\Claude\claude_desktop_config.json


On Mac/Linux:
   code ~/Library/Application\ Support/Claude/claude_desktop_config.json

After opening the config file, add the server:

{
  "mcpServers": {
    "walletmcp": {
      "command": "node",
      "args": [
          "YOUR_PATH_PREFIX\\WalletMCP\\build\\index.js"
      ]
  }
  }
}

It's all set!
You can now use the tools provided by the server in Claude Desktop.
You can activate these tools on the Claude client by asking questions relating to the Solana wallet.

Claim Rents Back

Questions & Prompts like:
- "What are my recent transactions?"

- "How much SOL do I have?"

- "How many buffers do I have unused?"
- "Can You send SOL to account [accountAddress]?"
- "What are the logs for a specific program [programId]?"

βš™οΈ Tools & Their Descriptions

getTransactions

Description: Retrieve recent transactions of a wallet. Inputs: - walletAddress (string) - limit (number) - maximum number of transactions to fetch.

getBalance

Description: Fetch the SOL balance of a wallet. Inputs: - walletAddress (string)

listBuffers

Description: List program buffers associated with a payer key. Inputs: - payerKey (array of numbers)

closeBuffer

Description: Close a buffer and return lamports to the payer. Inputs: - bufferPubkey (string) - payerKey (array of numbers)

getProgramLogs

Description: Fetch transaction logs from a specific program ID. Inputs: - programId (string) - limit (number) - optional, default is 10

sendSolTransaction

Description: Send SOL from one wallet to another. Inputs: - fromPrivateKey (array of numbers) - toPublicKeyStr (string) - amountSol (number) - mode ("main" | "dev")

πŸ›‘οΈ Security Considerations

- Always protect your private keys.
- Keys are not stored or logged in the server

🀝 Contributing

This project is open to contributions from the Solana dev community.
If you have ideas for improvements, feel free to open an issue or submit a pull request.

No reviews yet β€” be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.