Skip to content
Back to search
100
MCP live MCP 2026-07-28 streamable-http

Quantum Expectations

com.quantum-expectations/quantum-expectations

Quantum error-correction feasibility: success probability, qubit overhead, records, trends.

Uptime
100.0%
1 direct probes · 30d
Response
734ms
last probe
Tools
12
callable
Resources
8
readable
Prompts
3
available

Tools · 12

compute_expectation

Given a quantum circuit (2-qubit error rate p, qubit count n, depth d), compute the effective error rate, success probability, and optional surface-code or qLDPC overhead. The response is self-describ…

compute_required_error_rate

Inverse of compute_expectation. Given a circuit (numQubits, compDepth) and an acceptable effective error rate, return the required per-gate logical error rate and, for every EC option (no-EC, surface-…

compute_fault_tolerant_resources

Given an algorithm stated as (numLogicalQubits, tCount) and a physical error rate (or hardwareId), derive the full surface-code + magic-state-distillation footprint from the general laws of the Litins…

compare_hardware_scenarios

Run the same circuit against multiple current SOTA hardware entries in one call so an agent can rank platforms without N sequential compute_expectation calls. Defaults to every entry in list_current_q…

list_current_quantum_computers

Return the representative-entry table of current SOTA quantum computers (id, hardware type, physical qubit count, 2-qubit error rate). Same data that powers the website's "Current Quantum Computers" t…

list_hardware_timings

Return per-platform gate-cycle timings (2Q gate time, readout time, in SI seconds) plus the representative device and native 2Q gate name, with source URLs. Joins list_current_quantum_computers via `h…

compute_quantum_volume_rate

Compute the Quantum Volume Rate (QV/second): QVR = V_Q / (log2(V_Q) * t_2Q + t_meas). First-order estimate of how fast a device prepares one QV-sized square circuit (one native 2Q gate per QV layer + …

fit_historic_series

Fit a log-linear trend (ln(value) = slope * year + intercept) to one historic series — fidelity or qubit-count — for one hardware type. Atomic primitive: compose with list_current_quantum_computers, c…

list_example_algorithms

Return the curated list of example quantum algorithms with published resource estimates (qubit count, depth/gate count, source paper URL). Useful for comparing what algorithms need vs. what hardware c…

list_qldpc_codes

Return the catalog of supported qLDPC codes (id, label, family, n, k, d, circuitLevelDistance, ancilla counts, roundsPerLogicalOp, threshold, prefactor [per block per syndrome cycle], logicalErrorExpo…

get_historic_series

Return the full historic time series — either two-qubit gate error rates ("fidelity") or physical qubit counts ("qubit-count") — broken down by hardware type. Each datapoint carries a source URL. Use …

get_agent_brief

Return the plain-text site brief describing scope, assumptions, the honesty clause, and the API contract. Mirrors the /agent.txt document served by the website.

Resources · 8

historic-fidelity

Historic 2-qubit gate error rates by hardware type (with source URLs).

resource://quantum-expectations/historic-fidelity
historic-qubit-count

Historic physical qubit counts by hardware type (with source URLs).

resource://quantum-expectations/historic-qubit-count
current-quantum-computers

Representative-entry table of current SOTA quantum computers.

resource://quantum-expectations/current-quantum-computers
hardware-timings

Per-platform 2-qubit gate time and readout time (SI seconds) with source URLs. Joins with current-quantum-computers via hardwareType.

resource://quantum-expectations/hardware-timings
example-algorithms

Curated list of quantum algorithms with published resource estimates, each tagged with a `provenance` value (published-circuit vs attested-estimate) and, where applicable, a note on what is and is not…

resource://quantum-expectations/example-algorithms
example-algorithm-provenance

Gloss for the `provenance` values carried by every entry in example-algorithms, so the verifiability caveat travels with the data instead of living only in prose.

resource://quantum-expectations/example-algorithm-provenance
qldpc-codes

Supported qLDPC codes with thresholds and source URLs.

resource://quantum-expectations/qldpc-codes
agent-brief

Plain-text site brief with scope, assumptions, honesty clause, and API contract.

resource://quantum-expectations/agent-brief

Prompts · 3

assess_feasibility

Guided analysis: when could a circuit (logical qubits × depth, target error budget) become feasible on real hardware? Composes compute_required_error_rate and fit_historic_series; the agent draws the …

assess_fault_tolerant_feasibility

Guided analysis: what would it take to run an algorithm (logical qubits × T count) fault-tolerantly, and is that worth it vs classical compute? Composes compute_fault_tolerant_resources and list_curre…

compare_platforms

Guided analysis: rank current hardware platforms for a given circuit and explain which constraint binds on each. Composes compare_hardware_scenarios and list_hardware_timings; the agent draws the conc…

How to use

Add to your Claude Desktop / Cursor / Cline MCP config:

{
  "mcpServers": {
    "quantum_expectations": {
      "url": "https://www.quantum-expectations.com/api/mcp",
      "transport": "streamable-http"
    }
  }
}