# Send Pump MCP Server to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "pump-mcp-server",
    "name": "Pump MCP Server",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/speraxos/pump-mcp-server",
    "canonicalUrl": "https://clawhub.ai/speraxos/pump-mcp-server",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/pump-mcp-server",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pump-mcp-server",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "pump-mcp-server",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T14:22:40.084Z",
      "expiresAt": "2026-05-14T14:22:40.084Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pump-mcp-server",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pump-mcp-server",
        "contentDisposition": "attachment; filename=\"pump-mcp-server-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "pump-mcp-server"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/pump-mcp-server"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/pump-mcp-server",
    "downloadUrl": "https://openagent3.xyz/downloads/pump-mcp-server",
    "agentUrl": "https://openagent3.xyz/skills/pump-mcp-server/agent",
    "manifestUrl": "https://openagent3.xyz/skills/pump-mcp-server/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/pump-mcp-server/agent.md"
  }
}
```
## Documentation

### 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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: speraxos
- Version: 0.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-07T14:22:40.084Z
- Expires at: 2026-05-14T14:22:40.084Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/pump-mcp-server)
- [Send to Agent page](https://openagent3.xyz/skills/pump-mcp-server/agent)
- [JSON manifest](https://openagent3.xyz/skills/pump-mcp-server/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/pump-mcp-server/agent.md)
- [Download page](https://openagent3.xyz/downloads/pump-mcp-server)