← All skills
Tencent SkillHub · Developer Tools

Pump MCP Server

Model Context Protocol server exposing 7 tools, 3 resource types, and 3 prompts for AI agent consumption — Solana wallet operations, vanity address generatio...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Model Context Protocol server exposing 7 tools, 3 resource types, and 3 prompts for AI agent consumption — Solana wallet operations, vanity address generatio...

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.1.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 9 sections Open source page

MCP Server — Model Context Protocol for Solana Wallet Operations

Model Context Protocol server exposing tools, resources, and prompts for AI agent consumption over stdio transport with session keypair management.

Architecture

AI Agent (Claude, etc.) │ stdio transport │ SolanaWalletMCPServer │ ┌────┼────────┬──────────┐ │ │ │ │ Tools Resources Prompts Session │ │ │ State 7 3 3 │ tools types prompts Keypair

Tools (7)

ToolDescriptiongenerate_keypairGenerate a new random Solana keypairgenerate_vanityGenerate vanity address with prefix/suffixestimate_vanity_timeEstimate time for vanity patternvalidate_addressValidate a Solana Base58 addresssign_messageSign a message with session keypairverify_signatureVerify a signed messagerestore_keypairRestore keypair from secret key bytes

Resources (3)

URI PatternDescriptionsolana://keypair/currentCurrent session keypair infosolana://keypair/{id}Specific keypair by IDsolana://address/{address}Address validation details

Prompts (3)

PromptDescriptiongenerate-walletGuide user through wallet generationvanity-addressGuide vanity address generation with difficulty estimatesecurity-reviewReview security of wallet operations

Session State Management

class SolanaWalletMCPServer { private sessionKeypair: Keypair | null = null; generateKeypair(): KeypairInfo { if (this.sessionKeypair) { this.sessionKeypair.secretKey.fill(0); // zeroize old } this.sessionKeypair = Keypair.generate(); return this.getKeypairInfo(); } }

Security Model

Session keypair is zeroized when replaced or server shuts down No network calls for key generation All crypto uses @solana/web3.js only Zod schemas validate all tool inputs Secret key bytes are never logged or exposed in resources

Patterns to Follow

Validate all inputs with Zod schemas before processing Zeroize secret keys when replaced or on shutdown Return structured JSON for all tool responses Use descriptive error messages for validation failures Keep session state minimal — one active keypair at a time

Common Pitfalls

Session keypair is ephemeral — lost when server restarts generate_vanity is single-threaded — long prefixes will be slow sign_message requires an active session keypair — generate_keypair first Resource URIs are case-sensitive

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc