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

@oraclaw/mcp-server

v1.4.1

Published

OraClaw Decision Intelligence — 17 MCP tools for AI agents (6 premium API-key tools + 11 free). Full input/output schemas + MCP behavior annotations on every tool. Optimization (bandit/CMA-ES/genetic/LP-MIP), simulation (Monte Carlo/scenarios), prediction

Readme

OraClaw MCP Server

17 decision-intelligence tools your AI agent can call. Sub-25ms. 6 free without a key.

{
  "mcpServers": {
    "oraclaw": {
      "command": "npx",
      "args": ["-y", "@oraclaw/mcp-server"]
    }
  }
}

Drop that into your Claude Desktop / Cursor / Cline MCP config and your agent can immediately:

"I have 3 email subject line variants with these click rates. Which should I send next?"

The agent calls optimize_bandit → gets a statistically optimal arm in 0.01ms:

{ "selected": { "id": "C", "name": "Option C" },
  "score": 1.876, "exploitation": 0.9, "exploration": 0.976, "regret": 0.1 }

No LLM math, no hallucinated formulas, no setup beyond the snippet above.


All 17 tools

| Free (no key) | What it does | |---|---| | optimize_bandit | UCB1 / Thompson / ε-greedy arm selection | | optimize_contextual | LinUCB contextual bandit (per-situation choice) | | optimize_evolve | Genetic algorithm (discrete + multi-objective) | | solve_schedule | Task → time-slot assignment with energy matching | | score_convergence | Multi-source probability consensus (Hellinger) | | score_calibration | Brier + log score for forecaster accuracy | | predict_bayesian | Beta posterior update from weighted evidence | | predict_ensemble | Multi-model consensus + uncertainty decomposition | | plan_pathfind | A* + Yen's k-shortest paths | | simulate_montecarlo | Single-factor Monte Carlo (6 distributions) | | simulate_scenario | What-if comparison + sensitivity ranking |

| Premium (need API key) | What it does | |---|---| | optimize_cmaes | CMA-ES continuous black-box optimization | | solve_constraints | LP / MIP / QP solver (HiGHS, provably optimal) | | analyze_graph | PageRank + Louvain + critical path + bottlenecks | | analyze_risk | Portfolio VaR / CVaR with correlation | | predict_forecast | ARIMA / Holt-Winters time series | | detect_anomaly | Z-score / IQR outlier detection |

Every tool ships with an explicit inputSchema, outputSchema, and MCP behavior annotations (readOnlyHint, destructiveHint, idempotentHint, openWorldHint) so your agent knows exactly what it gets back.


Get a key for premium tools

oraclaw signup → — one email field, instant key, no card needed. 1,000 calls/day on pay-per-call ($0.005/call). Upgrade to Starter $9/mo for 50k/month.

Then add ORACLAW_API_KEY to your MCP env:

{
  "mcpServers": {
    "oraclaw": {
      "command": "npx",
      "args": ["-y", "@oraclaw/mcp-server"],
      "env": { "ORACLAW_API_KEY": "your-key-here" }
    }
  }
}

Use the API directly (no MCP)

curl -X POST https://oraclaw-api.onrender.com/api/v1/optimize/bandit \
  -H "Content-Type: application/json" \
  -d '{
    "arms": [
      {"id":"A", "name":"Option A", "pulls":10, "totalReward":7},
      {"id":"B", "name":"Option B", "pulls":10, "totalReward":5}
    ],
    "algorithm": "ucb1"
  }'

Free tier: 25 calls/day per IP, no key required.


Why agents need this

LLMs can't reliably do: bandit selection, LP optimization, time-series forecasting, graph centrality, Monte Carlo sampling, or anomaly detection. They confabulate the math. OraClaw is the deterministic substrate underneath your agent — every answer is a real algorithm, returns structured JSON, and runs in under 25ms.