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

@haruspex-guru-sdk/mcp-server

v0.1.3

Published

Official Haruspex MCP server. Use Haruspex stock scores in Claude Desktop, Cursor, Windsurf, and any MCP-compatible client.

Readme

@haruspex-guru-sdk/mcp-server

Official Haruspex Model Context Protocol server. Brings stock intelligence scores into any MCP-compatible application — Claude Desktop, Cursor, Windsurf, Zed, Continue.dev, and others — with no code.

This package is a thin server process. All HTTP logic is delegated to @haruspex-guru-sdk/sdk.

Quickstart — Claude Desktop

Edit your claude_desktop_config.json:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "haruspex": {
      "command": "npx",
      "args": ["-y", "@haruspex-guru-sdk/mcp-server"],
      "env": { "HARUSPEX_API_KEY": "hrspx_live_a7c52f9315a65c377fec9c30b53f266b" }
    }
  }
}

Quit and re-open Claude Desktop. Try asking:

  • "What's the Haruspex score for NVDA?"
  • "Compare AAPL and MSFT using Haruspex."
  • "Show me TSLA's 30-day Haruspex score history."
  • "Search for Apple stocks."
  • "What's driving the latest move in NVDA?"

Quickstart — Cursor

Edit ~/.cursor/mcp.json:

{
  "mcpServers": {
    "haruspex": {
      "command": "npx",
      "args": ["-y", "@haruspex-guru-sdk/mcp-server"],
      "env": { "HARUSPEX_API_KEY": "hrspx_live_a7c52f9315a65c377fec9c30b53f266b" }
    }
  }
}

Quickstart — Windsurf

Edit ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "haruspex": {
      "command": "npx",
      "args": ["-y", "@haruspex-guru-sdk/mcp-server"],
      "env": { "HARUSPEX_API_KEY": "hrspx_live_a7c52f9315a65c377fec9c30b53f266b" }
    }
  }
}

Other MCP clients

Any client that speaks MCP over stdio can use:

| Field | Value | | ------- | ---------------------------------- | | Command | npx | | Args | -y @haruspex-guru-sdk/mcp-server | | Env | HARUSPEX_API_KEY=hrspx_... |

Tools

| Tool | Example prompt | | -------------------------- | ------------------------------------------------------- | | get_stock_score | "What is the Haruspex score for NVDA?" | | get_batch_scores | "Compare AAPL, MSFT, and GOOGL on Haruspex." | | get_stock_score_history | "Show TSLA's last 30 days of Haruspex scores." | | search_stocks | "Find the ticker for Apple Hospitality." | | get_stock_news | "What recent news might be moving NVDA's score?" |

Authentication

Three tiers, same as the SDK:

  • Demo key (hrspx_live_a7c52f9315a65c377fec9c30b53f266b): 20 req/hr per IP, no signup. Right for evaluation. The server falls back to this key with a one-line stderr warning if HARUSPEX_API_KEY is unset.
  • Free key: 1,000 req/month. Sign up with GitHub at haruspex.guru/developers.
  • Pro / Institutional: see the pricing page.

Troubleshooting

  • The server doesn't appear in my client's tool list. Quit and reopen the application — most clients only read MCP config at startup.
  • "Authentication failed" in tool output. Your HARUSPEX_API_KEY is invalid or empty. Get a free one at haruspex.guru/developers.
  • "Rate limit exceeded" in tool output. The demo key is 20 req/hr per IP. A free key is 1,000 req/month.

Privacy

This server makes HTTP requests only to haruspex.guru. No telemetry, no analytics, no third-party calls. Source is in this repository — audit it.

License

MIT.