{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/pump-mcp-server",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pump-mcp-server",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/pump-mcp-server",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "MCP Server — Model Context Protocol for Solana Wallet Operations",
        "body": "Model Context Protocol server exposing tools, resources, and prompts for AI agent consumption over stdio transport with session keypair management."
      },
      {
        "title": "Architecture",
        "body": "AI Agent (Claude, etc.)\n        │\n    stdio transport\n        │\n   SolanaWalletMCPServer\n        │\n   ┌────┼────────┬──────────┐\n   │    │        │          │\n  Tools Resources Prompts  Session\n   │    │        │        State\n   7    3        3         │\n  tools types   prompts  Keypair"
      },
      {
        "title": "Tools (7)",
        "body": "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"
      },
      {
        "title": "Resources (3)",
        "body": "URI PatternDescriptionsolana://keypair/currentCurrent session keypair infosolana://keypair/{id}Specific keypair by IDsolana://address/{address}Address validation details"
      },
      {
        "title": "Prompts (3)",
        "body": "PromptDescriptiongenerate-walletGuide user through wallet generationvanity-addressGuide vanity address generation with difficulty estimatesecurity-reviewReview security of wallet operations"
      },
      {
        "title": "Session State Management",
        "body": "class SolanaWalletMCPServer {\n    private sessionKeypair: Keypair | null = null;\n\n    generateKeypair(): KeypairInfo {\n        if (this.sessionKeypair) {\n            this.sessionKeypair.secretKey.fill(0); // zeroize old\n        }\n        this.sessionKeypair = Keypair.generate();\n        return this.getKeypairInfo();\n    }\n}"
      },
      {
        "title": "Security Model",
        "body": "Session keypair is zeroized when replaced or server shuts down\nNo network calls for key generation\nAll crypto uses @solana/web3.js only\nZod schemas validate all tool inputs\nSecret key bytes are never logged or exposed in resources"
      },
      {
        "title": "Patterns to Follow",
        "body": "Validate all inputs with Zod schemas before processing\nZeroize secret keys when replaced or on shutdown\nReturn structured JSON for all tool responses\nUse descriptive error messages for validation failures\nKeep session state minimal — one active keypair at a time"
      },
      {
        "title": "Common Pitfalls",
        "body": "Session keypair is ephemeral — lost when server restarts\ngenerate_vanity is single-threaded — long prefixes will be slow\nsign_message requires an active session keypair — generate_keypair first\nResource URIs are case-sensitive"
      }
    ],
    "body": "MCP Server — Model Context Protocol for Solana Wallet Operations\n\nModel Context Protocol server exposing tools, resources, and prompts for AI agent consumption over stdio transport with session keypair management.\n\nArchitecture\nAI Agent (Claude, etc.)\n        │\n    stdio transport\n        │\n   SolanaWalletMCPServer\n        │\n   ┌────┼────────┬──────────┐\n   │    │        │          │\n  Tools Resources Prompts  Session\n   │    │        │        State\n   7    3        3         │\n  tools types   prompts  Keypair\n\nTools (7)\nTool\tDescription\ngenerate_keypair\tGenerate a new random Solana keypair\ngenerate_vanity\tGenerate vanity address with prefix/suffix\nestimate_vanity_time\tEstimate time for vanity pattern\nvalidate_address\tValidate a Solana Base58 address\nsign_message\tSign a message with session keypair\nverify_signature\tVerify a signed message\nrestore_keypair\tRestore keypair from secret key bytes\nResources (3)\nURI Pattern\tDescription\nsolana://keypair/current\tCurrent session keypair info\nsolana://keypair/{id}\tSpecific keypair by ID\nsolana://address/{address}\tAddress validation details\nPrompts (3)\nPrompt\tDescription\ngenerate-wallet\tGuide user through wallet generation\nvanity-address\tGuide vanity address generation with difficulty estimate\nsecurity-review\tReview security of wallet operations\nSession State Management\nclass SolanaWalletMCPServer {\n    private sessionKeypair: Keypair | null = null;\n\n    generateKeypair(): KeypairInfo {\n        if (this.sessionKeypair) {\n            this.sessionKeypair.secretKey.fill(0); // zeroize old\n        }\n        this.sessionKeypair = Keypair.generate();\n        return this.getKeypairInfo();\n    }\n}\n\nSecurity Model\nSession keypair is zeroized when replaced or server shuts down\nNo network calls for key generation\nAll crypto uses @solana/web3.js only\nZod schemas validate all tool inputs\nSecret key bytes are never logged or exposed in resources\nPatterns to Follow\nValidate all inputs with Zod schemas before processing\nZeroize secret keys when replaced or on shutdown\nReturn structured JSON for all tool responses\nUse descriptive error messages for validation failures\nKeep session state minimal — one active keypair at a time\nCommon Pitfalls\nSession keypair is ephemeral — lost when server restarts\ngenerate_vanity is single-threaded — long prefixes will be slow\nsign_message requires an active session keypair — generate_keypair first\nResource URIs are case-sensitive"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/speraxos/pump-mcp-server",
    "publisherUrl": "https://clawhub.ai/speraxos/pump-mcp-server",
    "owner": "speraxos",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}