Quantoracle MCP Server

<h1 align="center">QuantOracle</h1> <strong>The quantitative computation API for autonomous financial agents</strong> 63 deterministic

Remote serverstreamable-httpPython

What is the Quantoracle MCP server?

What it actually does

  • 63 pure calculators — across options, derivatives, risk, portfolio, statistics, crypto/DeFi, FX/macro, and TVM
  • 10 composite workflows — that bundle 5-15 calculator calls (backtest strategies, rebalance planning, options strategy selection, hedging recommendations, full risk analysis, pairs signals, and more)
  • Zero dependencies — for the 73 calculators + composites -- no market data, accounts, or third-party APIs; send numbers in, get numbers out
  • Deterministic — -- the calculators always produce the same outputs for the same inputs, so agents can cache, verify, and chain calls
  • Citation-verified — -- every formula tested against published textbook values (Hull, Wilmott, Bailey & Lopez de Prado)
  • 120 accuracy benchmarks — passing with analytical solutions

Its toolset

Everything the assistant can do here goes through one of these:

  • TypeScript — The TypeScript tool exposed by this server
  • Smithery — The Smithery tool exposed by this server

Adding it to your client

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

When to reach for it

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Quantoracle's toolset — TypeScript, Smithery — is a fair guide to whether it matches your workflow. It is maintained by quantoracledev; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Quantoracle's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Caveats

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the quantoracle mcp server does with a few real requests.

Available tools

ToolWhat it does
TypeScriptThe TypeScript tool exposed by this server.
SmitheryThe Smithery tool exposed by this server.

How to install the Quantoracle MCP server

Or run locally via npx:

```json
{
  "mcpServers": {
    "quantoracle": {
      "command": "npx",
      "args": ["-y", "quantoracle-mcp"]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Example prompts to try

  • Use Quantoracle to TypeScript.
  • Use Quantoracle to Smithery.

Frequently asked questions

It connects Quantoracle to MCP-compatible AI assistants such as Claude and Cursor, exposing 2 tools (TypeScript, Smithery) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Quantoracle directly.