{"name":"com.quantum-expectations/quantum-expectations","slug":"quantum-expectations","title":"Quantum Expectations","description":"Quantum error-correction feasibility: success probability, qubit overhead, records, trends.","url":"https://mcp.market/server/quantum-expectations","rating":null,"grade":"C","score":60,"certified":false,"status":"active","category":"other","tags":[],"presence":{"score":8,"stars":null,"forks":null,"downloads_week":null,"last_push_at":null,"license":null},"uptime":{"percent":100,"checks":7,"ok":7,"last_checked_at":"2026-09-21T02:30:50.443Z","last_ok_at":"2026-09-21T02:30:50.443Z","latency_ms":129},"claimed":false,"transport":"remote","callable_via_gateway":true,"default_price_micros":0,"repository":null,"website":"https://www.quantum-expectations.com","version":"0.6.0","remotes":[{"type":"streamable-http","url":"https://www.quantum-expectations.com/api/mcp"}],"packages":[],"tools":[{"name":"compare_hardware_scenarios","description":"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_quantum_computers when hardwareIds is omitted.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"numQubits":{"type":"integer","minimum":1,"maximum":1000000},"compDepth":{"type":"integer","minimum":1,"maximum":10000000000000},"useErrorCorrection":{"default":false,"type":"boolean"},"errorCorrectionCode":{"description":"Either \"surface\" (default when useErrorCorrection=true) or a qLDPC code id. \"surface-code\" is accepted as an alias for \"surface\".","type":"string","enum":["surface","bb-144-12-12","bb-288-12-18","surface-code"]},"distanceSurfaceCode":{"type":"number","description":"Surface code distance: odd integer in [3, 31]. Required when useErrorCorrection=true and the surface code is selected; ignored when a qLDPC code is selected."},"hardwareIds":{"description":"Subset of QUANTUM_COMPUTERS ids to compare. Omit to compare every entry.","type":"array","items":{"type":"string"}}},"required":["numQubits","compDepth"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"compute_expectation","description":"Given a quantum circuit (2-qubit error rate p, qubit count n, depth d, optional connectivity class), compute the effective error rate, success probability, and optional surface-code or qLDPC overhead. Without error correction a 2d-lattice connectivity is charged as a routing multiplier on depth (result.routingOverheadFactor); hardwareId supplies the device's class automatically. The response is self-describing (formulas, assumptions, caveats, glossary, SOTA hardware, historic series with source URLs) so an agent can reason from one call. For the inverse (\"what hardware do I need?\") use compute_required_error_rate; to rank multiple platforms in one call use compare_hardware_scenarios.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"qubitErrorRate":{"description":"Per-gate 2-qubit error rate p, in (0, 0.1]. Supply exactly one of qubitErrorRate or hardwareId.","type":"number","exclusiveMinimum":0,"maximum":0.1},"hardwareId":{"description":"Alias for qubitErrorRate: resolves to the 2-qubit error rate of the given SOTA hardware entry from list_current_quantum_computers. Supply exactly one of qubitErrorRate or hardwareId.","type":"string","enum":["trapped-ion","superconducting","neutral-atom"]},"connectivity":{"description":"Two-qubit connectivity of the device: \"all-to-all\" (ion transport), \"reconfigurable\" (atom shuttling, treated as all-to-all) or \"2d-lattice\" (fixed nearest-neighbour couplers, charged as a routing multiplier on depth in the no-EC path). Defaults to the hardware entry's class when hardwareId is supplied, else to all-to-all.","type":"string","enum":["all-to-all","reconfigurable","2d-lattice"]},"numQubits":{"type":"integer","minimum":1,"maximum":1000000},"compDepth":{"type":"integer","minimum":1,"maximum":10000000000000},"useErrorCorrection":{"default":false,"type":"boolean"},"errorCorrectionCode":{"description":"Either \"surface\" (default when useErrorCorrection=true) or a qLDPC code id from list_qldpc_codes. \"surface-code\" is accepted as an alias for \"surface\".","type":"string"},"distanceSurfaceCode":{"type":"number","description":"Surface code distance: odd integer in [3, 31]. Required when useErrorCorrection=true and the surface code is selected; ignored when a qLDPC code is selected."},"verbose":{"default":true,"description":"When false, omits hardwareContext, formulas, assumptions, caveats, glossary, examples, and exampleProblems from the response — leaving only modelVersion, scenario, and result. Use for parameter sweeps where that context would repeat unchanged.","type":"boolean"}},"required":["numQubits","compDepth"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"compute_fault_tolerant_resources","description":"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 Litinski lattice-surgery cost model (no per-scenario constants): distillation factory choice, tile layout, required code distance, total physical qubits, and wall-clock time. Results are reported under TWO published logical-error fits (conservative + optimistic) because they disagree by 13-268x (d=7 to d=25) - always state both. Returns an explicit `infeasible` block when no cataloged factory or code distance can satisfy the error budget. Computes numbers only: comparing against classical alternatives and concluding \"should this run on a quantum computer\" stays with you, the calling agent (state the caveats when you do).","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"numLogicalQubits":{"type":"integer","minimum":1,"maximum":1000000,"description":"Number of logical data qubits the algorithm needs."},"tCount":{"type":"integer","minimum":1,"maximum":10000000000000,"description":"Total number of T gates (magic states consumed). Convention: state Toffoli-counted algorithms in T gates before calling (1 Toffoli ≈ 4–7 T depending on decomposition)."},"qubitErrorRate":{"description":"Physical 2-qubit error rate p in (0, 0.1]. Supply exactly one of qubitErrorRate or hardwareId.","type":"number","exclusiveMinimum":0,"maximum":0.1},"hardwareId":{"description":"Alias for qubitErrorRate: resolves to the error rate of a SOTA hardware entry.","type":"string","enum":["trapped-ion","superconducting","neutral-atom"]},"targetSuccessProbability":{"default":0.98,"description":"Target end-to-end success probability. The failure budget (1 − target) is split evenly between T-state error and logical (memory/surgery) error, matching Litinski §4.","type":"number","exclusiveMinimum":0,"exclusiveMaximum":1},"dataBlock":{"default":"compact","description":"Data-block layout (Litinski §2): compact = fewest qubits, fast = shortest time per T gate.","type":"string","enum":["compact","intermediate","fast"]},"cycleTimeSeconds":{"default":0.000001,"description":"Surface-code cycle time in seconds. Default 1 µs (Litinski convention; Google 2024 measured 1.1 µs on superconducting hardware). Trapped-ion/neutral-atom cycles are orders of magnitude slower.","type":"number","exclusiveMinimum":0,"maximum":1}},"required":["numLogicalQubits","tCount"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"compute_quantum_volume_rate","description":"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 + one end-of-circuit measurement). OVERSTATES achievable rate: real compilation inflates the 2Q-gate count per layer; omits reset/SPAM, mid-circuit measurement, and classical-control latency. For a production throughput metric, see IBM's CLOPS (arXiv:2110.14108).","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"quantumVolume":{"type":"integer","minimum":2,"maximum":9007199254740991,"description":"Quantum volume V_Q (integer ≥ 2, e.g. 64 for a depth-log2=6 square circuit)."},"t2QSeconds":{"type":"number","exclusiveMinimum":0,"description":"Native 2-qubit gate time in seconds (e.g. 60e-9 for a 60 ns CZ)."},"tMeasurementSeconds":{"type":"number","exclusiveMinimum":0,"description":"End-of-circuit measurement/readout time in seconds (e.g. 5e-3 for 5 ms)."}},"required":["quantumVolume","t2QSeconds","tMeasurementSeconds"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"compute_required_error_rate","description":"Inverse of compute_expectation. Given a circuit (numQubits, compDepth) and an acceptable effective error rate, return the required per-gate logical error rate (requiredLogicalErrorRatePerGate: a number, or null only when the target is genuinely unreachable; never 0) and, for every EC option (no-EC, surface-code per distance, every qLDPC code), the required physical error rate plus the subset of current SOTA hardware that already qualifies. An option whose inverse lands above the code threshold is capped at min(MAX_P, threshold) and carries a `note` (any sub-threshold p satisfies it); `unreachableReason` is reserved for genuinely unreachable options. Answers \"what hardware do I need to run this algorithm?\".","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"numQubits":{"type":"integer","minimum":1,"maximum":1000000,"description":"Number of logical qubits n in the circuit."},"compDepth":{"type":"integer","minimum":1,"maximum":10000000000000,"description":"Circuit depth d (sequential 2-qubit gate layers). Accepts values up to 1e13."},"acceptableErrorRatePercent":{"type":"number","exclusiveMinimum":0,"maximum":100,"description":"Upper bound on the effective error rate, as a percent. Default website convention is 33 (i.e. ≤33% effective error is \"acceptable\")."}},"required":["numQubits","compDepth","acceptableErrorRatePercent"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"fit_historic_series","description":"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, compute_required_error_rate, or your own modelling to answer \"when might hardware reach X?\". residualStdDev is the BIASED (maximum-likelihood) RMS — divides by n, not (n - 2); on small series (n ≈ 3–5) inflate by √(n / (n - 2)) before building confidence intervals.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"seriesType":{"type":"string","enum":["fidelity","qubit-count"],"description":"Which historic series to fit: \"fidelity\" (2-qubit gate error rate) or \"qubit-count\" (physical qubits)."},"hardwareType":{"type":"string","enum":["Neutral Atom","Superconducting","Trapped-Ion"],"description":"Hardware platform as used by get_historic_series."},"targetValue":{"description":"Optional. When supplied, the response includes yearAtTargetValue — the extrapolated year the fit crosses this value (error rate for fidelity series, qubit count for qubit-count series). Null if slope is flat.","type":"number","exclusiveMinimum":0}},"required":["seriesType","hardwareType"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"get_agent_brief","description":"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.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{},"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"get_historic_series","description":"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 this to extrapolate trends — \"when might hardware reach X?\" — or pair with fit_historic_series for a log-linear fit on one hardware type.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"seriesType":{"type":"string","enum":["fidelity","qubit-count"],"description":"\"fidelity\" → 2-qubit gate error rates; \"qubit-count\" → physical qubit counts."}},"required":["seriesType"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"list_current_quantum_computers","description":"Return the representative-entry table of current SOTA quantum computers (id, hardware type, physical qubit count, 2-qubit error rate, connectivity class with a note on the coupling graph, source URL). Same data that powers the website's \"Current Quantum Computers\" table. For the model's capability prediction per entry in QUOPS units, read hardwareContext.currentQuantumComputers[].modelCapability from compute_expectation; for measured scores, list_quops_scores.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{},"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"list_example_algorithms","description":"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 can deliver. Each entry carries a `provenance` field: 'published-circuit' means the figure is reproducible from the source, 'attested-estimate' means the source withholds the circuit and the figure rests on the authors' attestation, with a `provenanceNote` giving the specifics. Carry that caveat whenever you quote an attested figure; do not present it as equivalently sourced.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{},"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"list_hardware_timings","description":"Return per-platform gate-cycle timings (2Q gate time, readout time, in SI seconds) plus the testbed they were measured on (`representativeDevice`) and the native 2Q gate name, with source URLs. Joins list_current_quantum_computers via `hardwareType`, but the numbers are BEST-CASE DEMONSTRATIONS from small testbeds, not measurements on the joined devices, which run their gates and array readout orders of magnitude slower. Use for ratio analysis or as optimistic lower-bound inputs to runtime estimates and compute_quantum_volume_rate, and say so when you quote a runtime.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{},"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"list_qldpc_codes","description":"Return the catalog of supported qLDPC codes (id, label, family, n, k, d, circuitLevelDistance, ancilla counts, roundsPerLogicalOp, threshold, fitCoefficients {c0, c1, c2}, logicalErrorExponent [alpha = d_circ/2], source URLs, provenance, caveats). The per-block, per-syndrome-cycle logical error rate is p^alpha * exp(c0 + c1*p + c2*p^2) for p <= threshold (the source paper's own fitting form; c1 = c2 = 0 means a plain power law). `provenance` names the table or section each constant was read from. `caveats` is an array of source-level qualifications on the entry's constants (loose distance bounds, values a source marks as assumed, numbers that differ between sources); empty when the sources carry none. Read it before quoting a code's logical error rate as firm. Use a code's `id` as the `errorCorrectionCode` input to `compute_expectation`.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{},"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"list_quops_scores","description":"Return the measured QUOPS capability scores (arXiv:2609.12146): per device, the largest random universal circuit size executed at polarization >= 1/sqrt(e) inside the cone w^2 <= s <= w^3, with width, QUOPS rate, architecture (physical, physical-postselected, logical) and source URL, plus the utility-scale targets in the same unit (RSA-2048 and FeMoco). These are measurements, the yardstick the site's own model is checked against: compare them with modelCapability.quopsEquivalent on the compute_expectation hardware context. Vendor and device names appear here because this table is agent-facing only.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{},"$schema":"https://json-schema.org/draft/2020-12/schema"}}],"scan":{"score":60,"grade":"C","scanned_at":"2026-09-20T16:16:26.487Z","report":{"scannerVersion":"0.1.9","scannedAt":"2026-09-20T16:16:26.458Z","components":{"code":{"score":-1,"max":25,"notes":["remote-only server, no package to scan"]},"reliability":{"score":20,"max":20,"notes":["remote reachable in 1032ms"]},"poisoning":{"score":15,"max":15,"notes":["13 tool descriptions checked"]},"auth":{"score":3,"max":15,"notes":["open endpoint exposes 1 write-action tools with no auth"]},"maintenance":{"score":3,"max":15,"notes":["no repository listed"]},"identity":{"score":4,"max":10,"notes":["verified namespace with website, no repo"]}},"findings":[{"id":"auth.open-write","severity":"high","component":"auth","title":"Write-action tools reachable without authentication"},{"id":"maint.no-repo","severity":"low","component":"maintenance","title":"No source repository listed"}],"inputs":{"probes":[{"url":"https://www.quantum-expectations.com/api/mcp","reachable":true,"authRequired":false,"latencyMs":1032,"serverInfo":{"name":"quantum-expectations","version":"0.7.0"}}],"packages":[],"repo":{"found":false},"icon":{"url":"https://www.quantum-expectations.com/brand-mark","source":"registry"},"presence":{"stars":null,"forks":null,"downloadsWeek":null,"license":null,"lastPushAt":null,"score":8}}}},"grade_history":[],"reviews":[]}