kannaka-quantum

kannaka-quantum

Enables AI agents to execute quantum circuits, generate true quantum random bits, and perform resonance recall using amplitude amplification on real quantum backends via qBraid.

Category
访问服务器

README

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
quantum_devices / devices List QPUs + simulators across providers, with status, qubit counts, and cost.
run_circuit / run Execute an OpenQASM 3 circuit on a backend; returns measurement counts.
quantum_random / qrng True quantum random bits from measurement collapse (not a PRNG) — a quantum entropy source for the medium's irrationality (Ξ) and dream noise.
resonance_recall / recall 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.

Providers & routing

A single device string selects both the provider and the backend. The prefix routes:

device string provider notes
qbraid:… qBraid Default. The free simulator qbraid:qbraid:sim:qir-sv (≤28 qubits) needs no credits. Real QPUs spend qBraid credits ($0.01 each).
openquantum:… 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: openquantum:<backend> e.g. openquantum:iqm:garnet.

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=…), then job.result(). Live per-task/per-shot/per-minute pricing is read from device.metadata()['pricing'].

  • OpenQuantum — via the openquantum-sdk package 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:

  1. QBRAID_API_KEY
  2. a saved ~/.qbraid/qbraidrc (QbraidProvider(api_key=…).save_config())
  3. ~/Downloads/QBraid.txt (a workstation convenience; first qbr_… match)

OpenQuantum — client credentials, resolved in order:

  1. OPENQUANTUM_CLIENT_ID + OPENQUANTUM_CLIENT_SECRET
  2. a JSON SDK key at OPENQUANTUM_SDK_KEY
  3. ~/.openquantum/sdk-key.json
  4. ~/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

run reads OpenQASM 3 from --qasm, --qasm-file, or stdin (-). Spend options (--allow-spend, --max-credits, --subcategory) apply to run/qrng/recall.

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 transport

Register 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) https://id.openquantum.com (realm platform) OAuth2 client-credentials → bearer token
Management https://management.openquantum.com backends, organizations, categories
Scheduler https://scheduler.openquantum.com 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
backend_class_id str the part after openquantum: (e.g. iqm:garnet)
name str "kannaka-quantum"
job_subcategory_id str "phys:oth" (required workload tag; override via --subcategory / OPENQUANTUM_SUBCATEGORY)
shots int the requested shot count
organization_id Optional[str] resolved from mgmt.list_user_organizations(...)
auto_approve_quote bool True — accept the live cost quote (already bounded by the pre-flight credit cap)
configuration_data Optional[Dict]
execution_plan / queue_priority enum / auto left at the SDK's AutoChoice
job_timeout_seconds, verbose int / bool 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_output returns provider-dependent JSON. The bridge's _oq_counts tries counts / measurement_counts / histogram / meas keys and a few accessor shapes, then falls back to attaching the raw output under raw_output so the parser can be tightened once a given backend's exact shape is observed. Backend qubit-ordering for resonance_recall is 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) or KANNAKA_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 via QBRAID_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:iqm:garnet OpenQuantum $0.00087/shot ≈ $0.22
openquantum:rigetti:cepheus-1-108q OpenQuantum $0.000255/shot ≈ $0.07
aws:rigetti:qpu:cepheus-1-108q qBraid 30 + 0.0425/shot credits ≈ $0.41
⚠️ rigetti:rigetti:qpu:cepheus-1-108q qBraid (native) $120/min — refused

Verified benchmark (simulator vs real hardware)

Same Bell state, 256 shots:

run device result leakage
simulator qbraid:qbraid:sim:qir-sv 00: 122, 11: 134 0%
real QPU aws:rigetti:qpu:cepheus-1-108q 00: 127, 11: 115, 01+10: 14 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.

License

MIT.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选