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

rockette-mcp

v0.2.0

Published

Rockette desk MCP server — strategies, backtests, bots for Cursor, Claude, Codex

Downloads

42

Readme

Rockette MCP server

Connect Cursor, Claude Code, Claude Desktop, Codex, Windsurf, and VS Code to your Rockette desk: strategies, backtests, debug/fix loops, and dry/paper bots.

One-command install

  1. Subscribe at rockette.vercel.app/pricing.
  2. Create an API key at Settings → API keys (rk_…).
  3. Run:
npx rockette-mcp install --api-key rk_your_key_here

That writes the MCP config for Cursor and Claude Desktop automatically.

More clients

# All JSON-based clients (Cursor, Claude Desktop, Windsurf, VS Code) + Codex
npx rockette-mcp install --api-key rk_… --all

# Single client
npx rockette-mcp install --api-key rk_… --client cursor
npx rockette-mcp install --api-key rk_… --client claude
npx rockette-mcp install --api-key rk_… --client codex

Claude Code (terminal):

export ROCKETTE_API_KEY=rk_…
export NEXT_PUBLIC_CONVEX_URL=https://aromatic-alligator-130.convex.cloud
export ROCKETTE_APP_URL=https://rockette.vercel.app
claude mcp add rockette -- npx -y rockette-mcp@latest

Restart your editor after installing. Approve the server in Cursor → Settings → MCP if prompted.

Custom deployment

npx rockette-mcp install --api-key rk_… \
  --app-url https://your-app.vercel.app \
  --convex-url https://your-deployment.convex.cloud

Local development (this repo)

npm run build:mcp
npm run mcp:install
# with key: ROCKETTE_API_KEY=rk_… npm run mcp:install
# or: node mcp-server/install.mjs rk_…
npm run mcp

Manual config

If you prefer to edit JSON yourself:

{
  "mcpServers": {
    "rockette": {
      "command": "npx",
      "args": ["-y", "rockette-mcp@latest"],
      "env": {
        "ROCKETTE_API_KEY": "rk_your_key_here",
        "NEXT_PUBLIC_CONVEX_URL": "https://aromatic-alligator-130.convex.cloud",
        "ROCKETTE_APP_URL": "https://rockette.vercel.app"
      }
    }
  }
}

| Client | Config file | |--------|-------------| | Cursor | ~/.cursor/mcp.json | | Claude Desktop | %APPDATA%\Claude\claude_desktop_config.json (Windows) | | Windsurf | ~/.codeium/windsurf/mcp.json | | VS Code | ~/.vscode/mcp.json | | Codex CLI | ~/.codex/config.toml |

Tools

| Tool | Purpose | |------|---------| | list_strategies | List your strategies | | get_strategy | Fetch code + metadata | | backtest_strategy | Run /api/backtest (perp or spot, up to 2y) | | analyze_strategy | Static analysis + OI fetch plan | | debug_strategy | Zero-trade diagnosis | | fix_strategy | Debug + rewrite strategy code | | iterate_strategy_backtest | Backtest → fix → re-test loop | | validate_strategy | Syntax check + one dry-run tick | | list_bots | Bot status | | create_bot | Create dry/paper bot | | start_bot / stop_bot | Control bots (worker must be running) |

Live trading is not available via MCP — use the Rockette app for live.

Publish (maintainers)

npm run build:mcp
cd mcp-server && npm publish --access public