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

@breezebaby/mcp-server

v1.0.0

Published

Breeze yield aggregator MCP server for Claude and other AI agents

Readme

mcp

MCP server (stdio) for Breeze strategy operations on Solana.

This service exposes Breeze tools to MCP clients (for example Cursor) and handles:

  • Strategy info and APY lookup
  • Balance/position checks for the configured wallet
  • Unsigned deposit/withdraw transaction creation
  • Local signing + broadcast for returned transactions

Environment

Create apps/mcp/.env with:

BREEZE_API_KEY=...
WALLET_PRIVATE_KEY=... # base58-encoded secret key
# Optional:
BREEZE_STRATEGY_ID=43620ba3-354c-456b-aa3c-5bf7fa46a6d4
SOLANA_RPC_URL=https://api.mainnet-beta.solana.com

Required:

  • BREEZE_API_KEY
  • WALLET_PRIVATE_KEY

Optional:

  • BREEZE_STRATEGY_ID (defaults to the strategy above)
  • SOLANA_RPC_URL (defaults to Solana mainnet public RPC)

Tools

  • get_strategy_info - returns strategy metadata and APY breakdown
  • check_balances - returns current Breeze positions for the configured wallet
  • get_deposit_tx - creates an unsigned base64 deposit transaction
  • get_withdraw_tx - creates an unsigned base64 withdraw transaction
  • sign_and_send_tx - signs and sends a base64 transaction

Project Structure

  • src/index.ts - MCP server bootstrap and transport wiring
  • src/tools/register-breeze-tools.ts - Breeze MCP tool registration/handlers
  • src/lib/config.ts - env/config loading and SDK/connection setup
  • src/lib/tokens.ts - token metadata and symbol/mint resolution
  • src/lib/amounts.ts - amount conversion and formatting helpers
  • src/lib/results.ts - common MCP text/json/error response helpers

Development

From this directory:

bun run dev

Or from the repo root:

bun run --filter mcp dev

Scripts

  • bun run dev - run with Bun watch mode
  • bun run build - compile TypeScript to dist
  • bun run start - run compiled MCP stdio server
  • bun run check - TypeScript no-emit check
  • bun run test - Node test runner

Test With Claude Desktop (Local)

  1. Create env file:
cp .env.example .env
  1. Fill required values in apps/mcp/.env:
  • BREEZE_API_KEY
  • WALLET_PRIVATE_KEY
  1. Build once:
bun run build
  1. Get your Node binary path:
which node

Use that exact absolute path in Claude config.

  1. Add this MCP server to Claude Desktop config (macOS): ~/Library/Application Support/Claude/claude_desktop_config.json
"breeze": {
      "command": "node",
      "args": ["-y", "@breezebaby/mcp-server"],
      "env": {
        "BREEZE_API_KEY": "your-breeze-api-key",
        "BREEZE_STRATEGY_ID": "strategy-id",
        "WALLET_PRIVATE_KEY": "your-private-key",
        "SOLANA_RPC_URL": "https://api.mainnet-beta.solana.com"
      }
}
  1. Restart Claude Desktop.

  2. In Claude, run a quick smoke test prompt, for example:

  • "Use get_strategy_info."
  • "Use check_balances for my configured wallet."

If tools do not appear:

  • Confirm command matches which node.
  • Confirm DOTENV_CONFIG_PATH points to your real .env file.
  • Confirm bun run build was run and dist/index.js exists.
  • Avoid dev for Claude MCP.