npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

metaplex-genesis-mcp

v1.1.0

Published

MCP server for interacting with Metaplex Genesis program on Solana

Readme

Metaplex Genesis MCP

Model Context Protocol server for Metaplex Genesis.

Fetch accounts. Query bonding curves. Get swap quotes. Create Genesis transactions.

MCP tools for interacting with Metaplex Genesis on Solana.

Node.js TypeScript MCP License

Overview

An MCP server that exposes tools for interacting with the Metaplex Genesis program. Use with Cursor, Claude Desktop, or any MCP-compatible client.

Core Capabilities:

  • 📊 Account Fetching - Get Genesis accounts by address or mint
  • 💰 Bucket Data - Query bonding curves, launch pools, presales, vaults
  • 👤 User Deposits - Fetch deposit info for any recipient
  • 📈 Trading Helpers - Current prices and swap quotes with fees
  • 🔧 Transaction Creation - Build Genesis initialization and swap transactions

Quick Start

Usage with npx (Recommended)

Run the server directly without installation:

npx metaplex-genesis-mcp

Installation

Install globally to use as a command:

npm install -g metaplex-genesis-mcp
metaplex-genesis-mcp

From Source

pnpm install
pnpm build

Docker

docker compose up -d

Or build manually:

docker build -t metaplex-genesis-mcp .
docker run -e SOLANA_RPC_URL=https://api.mainnet-beta.solana.com metaplex-genesis-mcp

Configuration

Add to your MCP config (Cursor .cursor/mcp.json or Claude Desktop):

{
  "mcpServers": {
    "metaplex-genesis": {
      "command": "npx",
      "args": ["-y", "metaplex-genesis-mcp"],
      "env": {
        "SOLANA_RPC_URL": "https://api.mainnet-beta.solana.com"
      }
    }
  }
}

Local Development Configuration

If running from source:

{
  "mcpServers": {
    "metaplex-genesis": {
      "command": "node",
      "args": ["/path/to/metaplex-genesis-mcp/dist/index.js"],
      "env": {
        "SOLANA_RPC_URL": "https://api.mainnet-beta.solana.com"
      }
    }
  }
}

| Variable | Required | Default | Description | | ---------------- | -------- | ------------------------------------- | ------------------- | | SOLANA_RPC_URL | No | https://api.mainnet-beta.solana.com | Solana RPC endpoint |

Available Tools

Account Fetching

| Tool | Description | | ----------------------------- | ------------------------------------------- | | get_genesis_account | Fetch a Genesis account by address | | get_genesis_account_by_mint | Fetch a Genesis account by base token mint | | list_genesis_accounts | List Genesis accounts with optional filters |

Bucket Data

| Tool | Description | | ------------------- | ------------------------------- | | get_bonding_curve | Fetch bonding curve bucket data | | get_launch_pool | Fetch launch pool bucket data | | get_presale | Fetch presale bucket data | | get_vault | Fetch vault bucket data |

User Deposits

| Tool | Description | | ------------------------- | --------------------------------------- | | get_launch_pool_deposit | Fetch a recipient's launch pool deposit | | get_presale_deposit | Fetch a recipient's presale deposit | | get_vault_deposit | Fetch a recipient's vault deposit |

Trading Helpers

| Tool | Description | | ------------------- | -------------------------------- | | get_current_price | Get current bonding curve price | | get_swap_quote | Calculate swap amounts with fees |

Transaction Creation

| Tool | Description | | ------------------------ | --------------------------------------------------- | | create_genesis_account | Build a Genesis initialization transaction (base64) | | swap | Build a swap transaction (base64) |

Project Structure

src/
├── tools/           # Tool handlers (accounts, buckets, deposits, trading, transactions)
├── types/           # TypeScript types and Zod schemas
├── services/        # Metaplex SDK service layer
├── utils/           # Serialization and formatting helpers
├── server.ts        # MCP server setup
├── stdio.ts         # Stdio transport entry point
└── index.ts         # CLI entry point

Testing

pnpm test              # Unit tests (mocked)
pnpm test:watch        # Unit tests in watch mode
pnpm test:integration  # Integration tests (real MCP client)
pnpm test:smoke        # Shell smoke test

Development

pnpm install       # Install dependencies
pnpm build         # Build for production
pnpm test          # Run tests

Related Repositories

License

Apache License 2.0 - see LICENSE for details.


Built by maikers - creators of realities