Quantum Expectations
com.quantum-expectations/quantum-expectationsQuantum error-correction feasibility: success probability, qubit overhead, records, trends.
Tools · 12
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…
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-…
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…
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…
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…
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 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 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…
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…
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…
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 …
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 2-qubit gate error rates by hardware type (with source URLs).
resource://quantum-expectations/historic-fidelity
Historic physical qubit counts by hardware type (with source URLs).
resource://quantum-expectations/historic-qubit-count
Representative-entry table of current SOTA quantum computers.
resource://quantum-expectations/current-quantum-computers
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
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
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
Supported qLDPC codes with thresholds and source URLs.
resource://quantum-expectations/qldpc-codes
Plain-text site brief with scope, assumptions, honesty clause, and API contract.
resource://quantum-expectations/agent-brief
Prompts · 3
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 …
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…
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…
Similar MCP servers embedding-nearest
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"
}
}
}