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

meridian-mcp

v0.1.5

Published

Meteora DLMM LP agent as an MCP server for Claude Code / Gemini CLI

Readme

Meridian MCP

Meteora DLMM LP agent tools as an MCP server for Claude Code, Gemini CLI, or any MCP-compatible AI assistant.

Instead of the AI guessing — it uses your live wallet, real pool data, and actual Meteora SDK to deploy positions, check PnL, close positions, and more.

What you can do

Once set up, just talk to Claude Code naturally:

  • "What are my current positions and their PnL?"
  • "Deploy 0.5 SOL into the best meme pool right now"
  • "Close the CHIBI-SOL position and swap to SOL"
  • "Check holders and narrative for this token: [mint]"
  • "What pools are trending right now?"
  • "Change my take profit to 15%"

Prerequisites

  • Node.js 18+
  • A Solana wallet private key (base58)
  • Helius API key — helius.dev (free tier works)
  • OpenRouter API key — openrouter.ai (only needed for --with-crons)

Installation

Step 1 — Run the setup wizard

npx meridian-mcp init

This will ask for:

  • Wallet private key — base58 encoded (the same one your agent uses)
  • OpenRouter API key — skip if you're not using cron jobs
  • Helius API key — used for RPC calls
  • Solana RPC URL — leave blank to auto-use Helius

Config is saved to ~/.meridian/ on your machine.

Step 2 — Add to Claude Code

Open or create ~/.claude/settings.json and add:

{
  "mcpServers": {
    "meridian": {
      "command": "npx",
      "args": ["meridian-mcp"]
    }
  }
}

Step 3 — Restart Claude Code

Close and reopen Claude Code. You should see a 🔧 tool indicator showing Meridian tools are available.

That's it — start chatting.


Optional: Run with cron jobs

If you want autonomous management and screening cycles running alongside the MCP server (replaces running node index.js separately):

{
  "mcpServers": {
    "meridian": {
      "command": "npx",
      "args": ["meridian-mcp", "--with-crons"]
    }
  }
}

Requires OpenRouter API key set during init.


Optional: Dry run mode (no real transactions)

{
  "mcpServers": {
    "meridian": {
      "command": "npx",
      "args": ["meridian-mcp", "--dry-run"]
    }
  }
}

All deploy/close/swap calls will simulate without sending transactions.


Data directory

Everything is stored in ~/.meridian/:

~/.meridian/
  .env                  # wallet key, API keys
  user-config.json      # your settings (deploy amount, models, thresholds)
  lessons.json          # agent lessons
  pool-memory.json      # pool history
  state.json            # position state
  smart-wallets.json    # tracked wallets
  strategy-library.json # LP strategies
  token-blacklist.json  # blacklisted tokens

Override location with env var: MERIDIAN_DATA_DIR=/custom/path npx meridian-mcp


Gemini CLI

Same setup — add to your Gemini CLI MCP config:

{
  "mcpServers": {
    "meridian": {
      "command": "npx",
      "args": ["meridian-mcp"]
    }
  }
}

Troubleshooting

Tools not showing in Claude Code

  • Make sure settings.json is valid JSON (no trailing commas)
  • Restart Claude Code fully after editing

"Cannot find module" error

  • Run npx meridian-mcp init first to ensure setup is complete
  • Make sure Node.js 18+ is installed: node --version

Transaction errors

  • Check your wallet has enough SOL for gas
  • Verify your RPC URL is working
  • Try --dry-run to test without real transactions

"Wallet private key not found"

  • Run npx meridian-mcp init again
  • Check ~/.meridian/.env exists and has WALLET_PRIVATE_KEY=...

Security

  • Your wallet private key is stored locally in ~/.meridian/.env — never shared
  • The MCP server runs locally on your machine — no remote servers involved
  • Use --dry-run to test before committing real funds