oraclaw-mcp-server
OraClaw
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 incodex/issue-367-linucb-router1h40m 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:
✓
punkpeye/awesome-mcp-servers(84K⭐) -- zusammengeführt✓
TensorBlock/awesome-mcp-servers-- zusammengeführt✓ MCP Registry, Glama (AAA-Bewertung), PulseMCP, Smithery, toolsdk-ai -- gelistet
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/banditimport { 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 |
| UCB1 / Thompson / Epsilon-Greedy Arm-Auswahl | 0,01ms |
| Kontextbewusster LinUCB-Bandit | 0,05ms |
| Genetischer Algorithmus für diskrete + multikriterielle Probleme | <10ms |
| Energieangepasste Aufgabenplanung | 3ms |
| Wahrscheinlichkeitskonsens aus mehreren Quellen (Hellinger) | 0,04ms |
| Brier + Log-Score für Prognosegenauigkeit | 0,02ms |
| Beta-Posterior-Update aus gewichteten Beweisen | 0,05ms |
| Multi-Modell-Konsens + Unsicherheitszerlegung | 0,1ms |
| A* + Yens k-kürzeste Pfade | 0,1ms |
| Ein-Faktor-Monte-Carlo (6 Verteilungen) | <2ms |
| Was-wäre-wenn-Vergleich + Sensitivitätsranking | <5ms |
Premium-Stufe (6 Tools, erfordert ORACLAW_API_KEY):
Tool | Was es tut | Latenz |
| CMA-ES kontinuierliche Black-Box-Optimierung | 12ms |
| LP / MIP / QP-Solver via HiGHS (nachweislich optimal) | 2ms |
| PageRank, Louvain-Communities, Engpasserkennung | 0,5ms |
| VaR und CVaR (Expected Shortfall) | <2ms |
| ARIMA + Holt-Winters Zeitreihenprognose | 0,08ms |
| 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
Komponente | Pfad |
MCP-Server | |
REST-API | |
Algorithmen | |
SDK-Pakete | |
LangChain-Tools | |
Mobile App | |
Dashboard (Next.js) |
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:
Links
Live-API: https://oraclaw-api.onrender.com
Dashboard: https://web-olive-one-89.vercel.app
Wenn dies Ihren Agenten davor bewahrt hat, Mathematik zu halluzinieren, geben Sie uns einen Stern :star:
Lizenz
Maintenance
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
- AlicenseAqualityCmaintenanceProvides 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.216MIT
- AlicenseNot gradedqualityCmaintenanceProvides GPU-accelerated scientific computing capabilities including symbolic mathematics, quantum wave mechanics simulations, molecular dynamics, and neural network training through four specialized MCP servers.2MIT
- FlicenseNot gradedqualityNot gradedmaintenanceArithym — 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.
- AlicenseAqualityAmaintenanceAI 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.3465AGPL 3.0
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.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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