kannaka-quantum
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@kannaka-quantumlist available quantum devices"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
kannaka-quantum
Real quantum capabilities for Kannaka, executed on actual quantum backends.
Kannaka's memory is a Holographic Resonance Medium — recall is wave interference, and "attention acts as gravity: wavefronts whose phase/amplitude align with the query are pulled forward." That is, almost verbatim, the definition of quantum amplitude amplification. This package makes the correspondence literal: it runs Kannaka's recall — plus arbitrary circuits and a true-entropy source — on real quantum hardware.
It is a multi-provider bridge with two surfaces over one core:
a JSON CLI — the Kannaka coding agent shells out to it to write & run quantum programs;
an MCP server — any MCP client (Claude Code, the kannaka-tui harness, other agents) gets the same tools.
Capabilities
tool (MCP) / subcommand (CLI) | what it does |
| List QPUs + simulators across providers, with status, qubit counts, and cost. |
| Execute an OpenQASM 3 circuit on a backend; returns measurement counts. |
| True quantum random bits from measurement collapse (not a PRNG) — a quantum entropy source for the medium's irrationality (Ξ) and dream noise. |
| Harvest raw bits from a real QPU into a local entropy reservoir (the free simulator is a PRNG and is refused). Spend-guarded. |
| Reservoir level, last-harvest provenance, and estimated refill cost. |
| Draw bits from the reservoir — raw, or ( |
| The showcase. Amplitude-encode candidate memory resonances into a quantum state and amplitude-amplify toward the strongest — Kannaka's recall, run as interference on a quantum computer. |
Related MCP server: NotebookLM MCP Server (Security Hardened)
Providers & routing
A single device string selects both the provider and the backend. The prefix routes:
device string | provider | notes |
| qBraid | Default. The free simulator |
| OpenQuantum (Quantum Rings) | Real QPUs only (IonQ / Rigetti / IQM / AQT) — no free simulator; every job spends "Spark" credits (1 credit = $2; free tier 25 credits / $50 per 90 days). Form: |
The free qBraid simulator is the default device everywhere, so casual and agent-driven use never spends money. Real hardware runs only when you name a hardware device and opt into spending (see Spend safety).
How each provider is integrated
qBraid — via
qbraid.runtime.QbraidProvider.provider.get_device(id).run(qasm3, shots=…), thenjob.result(). Live per-task/per-shot/per-minute pricing is read fromdevice.metadata()['pricing'].OpenQuantum — via the
openquantum-sdkpackage over OAuth2 client-credentials:from openquantum_sdk import ManagementClient, SchedulerClient from openquantum_sdk.auth import ClientCredentials from openquantum_sdk.clients import ClientCredentialsAuth, JobSubmissionConfig auth = ClientCredentialsAuth(ClientCredentials(client_id, client_secret)) mgmt = ManagementClient(auth=auth) sched = SchedulerClient(auth=auth, management_client=mgmt) cfg = JobSubmissionConfig( backend_class_id="iqm:garnet", # the part after "openquantum:" name="kannaka-quantum", job_subcategory_id="phys:oth", # required workload tag shots=256, organization_id=org_id, # auto-discovered (see below) auto_approve_quote=True, ) job = sched.submit_job(cfg, file_content=qasm.encode("utf-8")) output = sched.download_job_output(job)The bridge wraps all of this — you only ever pass a device string and OpenQASM. See OpenQuantum integration internals for the full authoritative SDK surface (endpoints, auth, config fields, method map).
Install
pip install kannaka-quantum # or: pip install -e . (from this directory)Requires Python ≥ 3.10. Dependencies: qbraid, qiskit, numpy, mcp, and openquantum-sdk.
Authentication
Configure whichever provider(s) you'll use. The free qBraid simulator works with a qBraid key alone; OpenQuantum is optional and only needed for its real QPUs.
qBraid — an API key, resolved in order:
QBRAID_API_KEYa saved
~/.qbraid/qbraidrc(QbraidProvider(api_key=…).save_config())~/Downloads/QBraid.txt(a workstation convenience; firstqbr_…match)
OpenQuantum — client credentials, resolved in order:
OPENQUANTUM_CLIENT_ID+OPENQUANTUM_CLIENT_SECRETa JSON SDK key at
OPENQUANTUM_SDK_KEY~/.openquantum/sdk-key.json~/Downloads/sdk-key-*.json(workstation convenience)
If no OpenQuantum credentials are present, the bridge simply omits OpenQuantum from device listings and stays fully usable on qBraid.
CLI
Every subcommand prints one JSON object to stdout (errors included), so a caller can parse it directly.
kannaka-quantum devices --online
kannaka-quantum run --qasm-file bell.qasm --shots 200
kannaka-quantum qrng --bits 16
kannaka-quantum recall --amplitudes 0.1,0.9,0.2,0.15 --labels alpha,beta,gamma,delta
# Entropy reservoir (real-QPU-only) + provenance-tracked DRBG
kannaka-quantum harvest --allow-spend # 2048 bits from a real QPU → reservoir
kannaka-quantum qrng-status # level, provenance, refill cost
kannaka-quantum qrng-draw --bits 256 --expand # HMAC-DRBG stream seeded by the reservoirrun reads OpenQASM 3 from --qasm, --qasm-file, or stdin (-). Spend options (--allow-spend, --max-credits, --subcategory) apply to run/qrng/recall/harvest.
Entropy reservoir
harvest runs qrng against a real per-shot QPU (default openquantum:rigetti:cepheus-1-108q, ~$0.000255/shot) and appends the raw bits to ~/.kannaka/entropy/reservoir.bin, with a provenance line (device, job_id, n_bits, cost_usd, timestamp) in reservoir.meta.jsonl. The free simulator is a PRNG and is refused. qrng-draw returns raw reservoir bits, or with --expand seeds a NIST SP 800-90A HMAC-DRBG (stdlib only) and expands — every draw records the harvest(s) that seeded it, so the stream chains back to a QPU job_id. An empty reservoir fails loudly; there is no silent software-PRNG fallback.
Example: resonance recall
$ kannaka-quantum recall --amplitudes 0.1,0.9,0.2,0.15 --labels alpha,beta,gamma,delta
{"distribution": {"alpha": 2, "beta": 775, "gamma": 240, "delta": 7},
"quantum_top": "beta", "classical_top": "beta", "agree": true,
"qubits": 2, "candidates": 4, "amplified": true,
"device": "qbraid:qbraid:sim:qir-sv"}Amplitude amplification sharpens the prepared resonance state toward the strongest memory — the recall ran on a quantum computer, and it agrees with the classical argmax. The iteration count is derived from the target's initial amplitude ((π/2 − θ)/2θ), not the textbook (π/4)√N, so an already-dominant memory isn't over-rotated and de-amplified.
MCP server
kannaka-quantum mcp # stdio transportRegister with Claude Code:
claude mcp add kannaka-quantum -- python -m kannaka_quantum mcp…then any agent can call quantum_devices, run_circuit, quantum_random, and resonance_recall. (Shipped as a Claude Code plugin too — see .claude-plugin/ and skills/kannaka-quantum/.)
OpenQuantum integration internals
The authoritative surface, verified against openquantum-sdk 0.3.7 (the docs' overview omits most of this). Everything below is wrapped by the bridge; you don't call it directly, but this is what an openquantum:… device routes through.
Services & auth
OpenQuantum is three HTTP services behind a Keycloak identity provider:
service | default base URL | role |
Identity (Keycloak) |
| OAuth2 client-credentials → bearer token |
Management |
| backends, organizations, categories |
Scheduler |
| job submit / status / output |
ClientCredentialsAuth(
creds, # ClientCredentials(client_id, client_secret)
keycloak_base="https://id.openquantum.com",
realm="platform",
scope=None,
leeway_seconds=30, # token-refresh clock skew
session=None,
)Auth is OAuth2 client-credentials with automatic token refresh — construct it once and the clients reuse/refresh the bearer token. client_id is prefixed s_…. Both clients accept either an auth= object or a raw token=:
SchedulerClient(base_url="https://scheduler.openquantum.com", token=None, auth=None, management_client=None)
ManagementClient(base_url="https://management.openquantum.com", token=None, auth=None)A SchedulerClient will lazily build its own ManagementClient for organization auto-discovery if you don't pass one. The bridge passes an explicit shared mgmt so both clients reuse one token.
JobSubmissionConfig fields
field | type | the bridge sets |
|
| the part after |
|
|
|
|
|
|
|
| the requested shot count |
|
| resolved from |
|
|
|
|
| — |
| enum / auto | left at the SDK's |
|
| SDK defaults |
SchedulerClient method map
job = sched.submit_job(config, *, file_content=bytes | None, file_path=str | None) # -> JobRead
output = sched.download_job_output(job) # -> Any (counts)
sched.close()The bridge submits in-memory (file_content=qasm.encode("utf-8")) rather than from a file. Other lifecycle methods the SDK exposes (not currently used): get_job, list_jobs, cancel_job, prepare_job / get_preparation_result, upload_job_input, get_job_categories / get_job_subcategories, get_backend_class.
Result shape note.
download_job_outputreturns provider-dependent JSON. The bridge's_oq_countstriescounts/measurement_counts/histogram/measkeys and a few accessor shapes, then falls back to attaching the raw output underraw_outputso the parser can be tightened once a given backend's exact shape is observed. Backend qubit-ordering forresonance_recallis treated as big-endian-no-reverse (like AWS-routed devices) pending a confirmed real recall on an OpenQuantum QPU.
Spend safety
The whole point is that casual use is free and a careless run can't drain the budget.
Free by default. The default device is the free qBraid simulator; nothing spends until you name a hardware device.
Explicit opt-in. A real-QPU run requires
allow_spend=True(CLI--allow-spend) orKANNAKA_QUANTUM_ALLOW_SPEND=1. Otherwise it raises and points you back to the free simulator.Credit ceiling. Every paid run is bounded by
max_credits(CLI--max-credits); over-cap pre-flight estimates raise instead of submitting. Defaults: qBraid 200 credits (≈ $2), OpenQuantum 1 credit (≈ $2). Override viaQBRAID_MAX_CREDITS/OPENQUANTUM_MAX_CREDITS.Per-minute devices are refused. qBraid's native Rigetti bills per minute (~12000 credits/min ≈ $120/min) — cost can't be bounded from a shot count, so the bridge rejects per-minute devices outright. Use a per-shot device instead.
All three hazards (no-opt-in, over-cap, per-minute) raise before any job is submitted — verified at $0.
Cheap real QPUs
device | provider | ~cost (256 shots) |
| OpenQuantum | $0.00087/shot ≈ $0.22 |
| OpenQuantum | $0.000255/shot ≈ $0.07 |
| qBraid | 30 + 0.0425/shot credits ≈ $0.41 |
⚠️ | qBraid (native) | $120/min — refused |
Verified benchmark (simulator vs real hardware)
Same Bell state, 256 shots:
run | device | result | leakage |
simulator |
|
| 0% |
real QPU |
|
| 5.5% ($0.41) |
≈ 94.5% fidelity under real device noise.
Development
pip install -e .
pytest # 6 network-free tests (no credentials or backend needed)The core (kannaka_quantum/core.py) is provider-agnostic; cli.py and mcp_server.py are thin surfaces over it.
Releasing
This repo doesn't tag releases yet. When it does, pushing a v* tag (e.g.
v0.2.4) also updates the constellation marketplace: the
notify-marketplace workflow sends a
plugin-released dispatch to
kannaka-constellation-marketplace,
which opens a PR bumping kannaka-quantum's version in its manifest and README.
Keep pyproject.toml and .claude-plugin/plugin.json versions in step with the
tag. The cascade is dormant until a KANNAKA_CASCADE_PAT secret (a PAT with
contents: write + pull-requests: write on the marketplace repo) is added to
this repo's Actions secrets; until then the workflow just logs a warning and
no-ops.
License
MIT.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/NickFlach/kannaka-quantum'
If you have feedback or need assistance with the MCP directory API, please join our Discord server