Skip to main content
Glama

OraClaw

MIT License Tests MCP Algorithms Latency npm API Status Implementations

MCP-Optimierungstools für KI-Agenten -- 17 Tools, 21 Algorithmen, unter 25ms. Null LLM-Kosten.

Ihr KI-Agent kann nicht rechnen. OraClaw bietet ihm deterministische Optimierung, Simulation, Prognose und Risikoanalyse über das Model Context Protocol. Jedes Tool liefert strukturiertes JSON, läuft in unter 25ms und verursacht keine Rechenkosten.


Validierung

Die Mathematik von OraClaw wurde unabhängig in 12 Open-Source-Projekten implementiert, die KI-Agenten-Orchestrierung, Zeitreihenverfolgung, Vektorsuche, MIP-Optimierung und produktive ML-Systeme umfassen – alles innerhalb der ersten 8 Tage nach der öffentlichen Veröffentlichung.

Ausgewählte Feldimplementierungen (siehe CHANGELOG.md für die vollständige Liste):

  • chernistry/bernstein -- 84⭐ Agenten-Orchestrierungs-Framework. LinUCB kontextueller Router mit α=0.3, Shadow-Evaluation-Pfad, interpretierbare Entscheidungsgründe. Ausgeliefert in codex/issue-367-linucb-router 1h40m nach der Spezifikationskorrektur.

  • stxkxs/nanohype -- kontextuelles Banditen-Routing, erweiterbare Strategie-Registry (Hash / Sliding-TTL / semantisch), Kosten-Anomalieerkennung, LinUCB auf der Roadmap. "Ihr Input hat viel von dem geprägt, was tatsächlich ausgeliefert wurde."

  • rfivesix/hypertrack -- Bayes/Kalman-artiger adaptiver Kalorienschätzer mit phasenbewusster kcal/kg-Rampe. Ausgeliefert in 0.8.0-beta. "An diesem Punkt denke ich, dass das mathematische Modell an einem sehr starken Punkt ist."

  • AlanHuang99/pyrollmatch -- Entropie-Ausgleich (Hainmueller 2012) mit Momentenbeschränkungen + max_weight-Obergrenze. Ausgeliefert in v0.1.3.

  • stffns/vstash -- IDF-Sigmoid-Relevanzgewichtung. Ausgeliefert in v0.17.0.

Marktplatz-Verbreitung:

Maintainer-Beziehungen (warme technische Korrespondenz): Qdrant, Milvus, NetworkX, Apache DataFusion, DuckDB, pymc-labs.


Related MCP server: Math-Physics-ML MCP System

Schnellstart

1. MCP-Server (empfohlen für KI-Agenten)

Fügen Sie dies zu Ihrer claude_desktop_config.json hinzu:

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

Fragen Sie dann Ihren Agenten:

"Ich habe 3 Varianten für E-Mail-Betreffzeilen. Welche sollte ich als Nächstes senden?"

Der Agent ruft optimize_bandit auf und erhält in 0,01ms eine statistisch optimale Auswahl.

2. REST-API (keine Installation)

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},
      {"id": "C", "name": "Option C", "pulls": 2, "totalReward": 1.8}
    ],
    "algorithm": "ucb1"
  }'

Antwort (<1ms):

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

Kostenlose Stufe: 25 Aufrufe/Tag, kein API-Schlüssel erforderlich.

3. npm SDK

npm install @oraclaw/bandit
import { OraBandit } from '@oraclaw/bandit';

const client = new OraBandit({ baseUrl: 'https://oraclaw-api.onrender.com' });
const result = await client.optimize({
  arms: [
    { id: 'A', name: 'Short Subject', pulls: 500, totalReward: 175 },
    { id: 'B', name: 'Long Subject', pulls: 300, totalReward: 126 },
  ],
  algorithm: 'ucb1',
});

14 SDK-Pakete: @oraclaw/bandit, @oraclaw/solver, @oraclaw/simulate, @oraclaw/risk, @oraclaw/forecast, @oraclaw/anomaly, @oraclaw/graph, @oraclaw/bayesian, @oraclaw/ensemble, @oraclaw/calibrate, @oraclaw/evolve, @oraclaw/pathfind, @oraclaw/cmaes, @oraclaw/decide


Warum?

LLMs generieren plausible Texte, keine optimalen Lösungen. Bitten Sie GPT, die beste A/B-Test-Variante auszuwählen, und es wendet eine Heuristik an, die den Exploration-Exploitation-Tradeoff ignoriert. Bitten Sie es, ein lineares Programm zu lösen, und es halluziniert Einschränkungen. OraClaw gibt Ihrem Agenten Zugriff auf echte Algorithmen – Banditen, Solver, Prognosemodelle, Risikomodelle –, die mathematisch korrekte Antworten in unter einer Millisekunde liefern, ohne Token für das Schlussfolgern zu verbrauchen.


MCP-Tool-Katalog (17 Tools)

Kostenlose Stufe (11 Tools, kein API-Schlüssel — 25 Aufrufe/Tag pro IP):

Tool

Was es tut

Latenz

optimize_bandit

UCB1 / Thompson / Epsilon-Greedy Arm-Auswahl

0,01ms

optimize_contextual

Kontextbewusster LinUCB-Bandit

0,05ms

optimize_evolve

Genetischer Algorithmus für diskrete + multikriterielle Probleme

<10ms

solve_schedule

Energieangepasste Aufgabenplanung

3ms

score_convergence

Wahrscheinlichkeitskonsens aus mehreren Quellen (Hellinger)

0,04ms

score_calibration

Brier + Log-Score für Prognosegenauigkeit

0,02ms

predict_bayesian

Beta-Posterior-Update aus gewichteten Beweisen

0,05ms

predict_ensemble

Multi-Modell-Konsens + Unsicherheitszerlegung

0,1ms

plan_pathfind

A* + Yens k-kürzeste Pfade

0,1ms

simulate_montecarlo

Ein-Faktor-Monte-Carlo (6 Verteilungen)

<2ms

simulate_scenario

Was-wäre-wenn-Vergleich + Sensitivitätsranking

<5ms

Premium-Stufe (6 Tools, erfordert ORACLAW_API_KEY):

Tool

Was es tut

Latenz

optimize_cmaes

CMA-ES kontinuierliche Black-Box-Optimierung

12ms

solve_constraints

LP / MIP / QP-Solver via HiGHS (nachweislich optimal)

2ms

analyze_graph

PageRank, Louvain-Communities, Engpasserkennung

0,5ms

analyze_risk

VaR und CVaR (Expected Shortfall)

<2ms

predict_forecast

ARIMA + Holt-Winters Zeitreihenprognose

0,08ms

detect_anomaly

Z-Score + IQR Anomalieerkennung

0,01ms

14 von 18 REST-Endpunkten antworten in unter 1ms. Alle unter 25ms.


Jetzt ausprobieren

Die API ist live. Keine Registrierung erforderlich.

# Bayesian inference
curl -X POST https://oraclaw-api.onrender.com/api/v1/predict/bayesian \
  -H 'Content-Type: application/json' \
  -d '{"prior": 0.3, "evidence": [{"factor": "positive_test", "weight": 0.9, "value": 0.05}]}'

# Monte Carlo simulation
curl -X POST https://oraclaw-api.onrender.com/api/v1/simulate/montecarlo \
  -H 'Content-Type: application/json' \
  -d '{"simulations": 1000, "distribution": "normal", "params": {"mean": 100, "stddev": 15}}'

# Anomaly detection
curl -X POST https://oraclaw-api.onrender.com/api/v1/detect/anomaly \
  -H 'Content-Type: application/json' \
  -d '{"data": [10, 12, 11, 13, 50, 12, 11, 10], "method": "zscore", "threshold": 2.0}'

Preisgestaltung

Stufe

Aufrufe

Preis

Auth

Kostenlos

25/Tag

$0

Keine

Pay-per-call

1K/Tag

$0,005/Aufruf

API-Schlüssel

Starter

10K/Monat

$9/Monat

API-Schlüssel

Wachstum

100K/Monat

$49/Monat

API-Schlüssel

Skalierung

1M/Monat

$199/Monat

API-Schlüssel

x402 USDC: KI-Agenten zahlen $0,01-$0,15 pro Aufruf mit USDC auf Base. Kein Abonnement, kein API-Schlüssel.


Quellcode


Bauen Sie mit OraClaw?

Wir würden gerne hören, woran Sie arbeiten. Teilen Sie Ihren Anwendungsfall, stellen Sie Fragen oder fordern Sie Funktionen an:



Wenn dies Ihren Agenten davor bewahrt hat, Mathematik zu halluzinieren, geben Sie uns einen Stern :star:

Lizenz

MIT

A
license - permissive license
A
quality
A
maintenance

Maintenance

Maintainers
13dResponse time
6wRelease cycle
3Releases (12mo)
Commit activity
Issues opened vs closed

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    A
    quality
    C
    maintenance
    Provides 21 mathematical tools across 6 domains including basic calculations, array operations, statistics, financial mathematics, linear algebra, and calculus. Supports batch execution for complex multi-step workflows with intelligent dependency resolution.
    21
    6
    MIT
  • F
    license
    Not graded
    quality
    Not graded
    maintenance
    Arithym — lightweight precision math for agents on the go. Exact arithmetic MCP server with 62 tools, zero hallucination, sub-millisecond computation and is 61% cheaper than Python code execution at scale.
  • A
    license
    A
    quality
    A
    maintenance
    AI Agent Mission Control — 200+ MCP tools across 31 domains. Manage agents, experiments, workflows, crews, skills, tools, credentials, approvals, signals, budgets, marketplace, knowledge bases, chatbots, and more. Self-hosted, open-source (AGPL-3.0). Supports stdio + Streamable HTTP/SSE with OAuth 2.0 auth.
    34
    65
    AGPL 3.0

View all related MCP servers

Related MCP Connectors

  • Deterministic reasoning stack for AI agents: simulate, decide & compute, plus cross-domain tools.

  • 65+ AI tools as MCP: research, write, code, scrape, translate, RAG, agent memory, workflows

  • Package intelligence MCP for AI agents — 22 tools, 19 ecosystems, AGPL SDK, free.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Whatsonyourmind/oraclaw'

If you have feedback or need assistance with the MCP directory API, please join our Discord server