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

stacq-mcp-server

v0.1.0

Published

MCP server for Stacq crypto investment platform — trade, DCA, and manage your portfolio via AI agents

Readme

stacq-mcp-server

MCP (Model Context Protocol) server for Stacq — manage your crypto portfolio through AI agents like Claude Desktop, Cursor, or Claude Code.

Setup

1. Get your API key

Go to stacq.xyz/settings and create an API key in the Integrations section.

2. Configure your AI client

Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "stacq": {
      "command": "npx",
      "args": ["-y", "stacq-mcp-server"],
      "env": {
        "STACQ_API_KEY": "stacq_your_key_here"
      }
    }
  }
}

Claude Code (.claude/mcp.json):

{
  "mcpServers": {
    "stacq": {
      "command": "npx",
      "args": ["-y", "stacq-mcp-server"],
      "env": {
        "STACQ_API_KEY": "stacq_your_key_here"
      }
    }
  }
}

Available Tools

| Tool | Description | |------|-------------| | get_portfolio | View your holdings, USDC balance, and recent transactions | | get_all_prices | Get current prices for all supported crypto assets | | get_asset_price | Get the price of a specific asset (BTC, ETH, SOL, XRP, XAUT, HYPE) | | spot_buy | Buy crypto with a USD amount | | spot_sell | Sell a quantity of crypto | | list_dca_plans | View your Dollar Cost Averaging plans | | create_dca_plan | Set up a recurring buy plan | | update_dca_plan | Modify or pause/resume a DCA plan | | delete_dca_plan | Remove a DCA plan | | get_deposit_status | Check recent transaction and deposit status |

Example Prompts

  • "What's my Stacq portfolio?"
  • "What's the current price of Bitcoin?"
  • "Buy $50 of ETH on Stacq"
  • "Set up a weekly $25 DCA into BTC"
  • "Pause my ETH DCA plan"
  • "Show my recent transactions"

API Key Scopes

| Scope | Permissions | |-------|-------------| | read | View portfolio, prices, DCA plans, transactions | | trade | Execute spot buy and sell orders | | manage | Create, update, and delete DCA plans |

Keys never have withdraw permissions — agents cannot move funds out of your account.

Prerequisites

  • A Stacq account at stacq.xyz
  • Agent wallet authorized (done once via the web app)
  • Node.js 18+