🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@oraclaw/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@oraclaw/mcp-server

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

latest
Source
npmnpm
Version
1.5.1
Version published
Weekly downloads
57
-1.72%
Maintainers
1
Weekly downloads
 
Created
Source

OraClaw MCP Server

17 decision-intelligence tools your AI agent can call. Sub-25ms. 11 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_banditUCB1 / Thompson / ε-greedy arm selection
optimize_contextualLinUCB contextual bandit (per-situation choice)
optimize_evolveGenetic algorithm (discrete + multi-objective)
solve_scheduleTask → time-slot assignment with energy matching
score_convergenceMulti-source probability consensus (Hellinger)
score_calibrationBrier + log score for forecaster accuracy
predict_bayesianBeta posterior update from weighted evidence
predict_ensembleMulti-model consensus + uncertainty decomposition
plan_pathfindA* + Yen's k-shortest paths
simulate_montecarloSingle-factor Monte Carlo (6 distributions)
simulate_scenarioWhat-if comparison + sensitivity ranking
Premium (need API key)What it does
optimize_cmaesCMA-ES continuous black-box optimization
solve_constraintsLP / MIP / QP solver (HiGHS, provably optimal)
analyze_graphPageRank + Louvain + critical path + bottlenecks
analyze_riskPortfolio VaR / CVaR with correlation
predict_forecastARIMA / Holt-Winters time series
detect_anomalyZ-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.

Keywords

mcp

FAQs

Package last updated on 23 Jun 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts