⚛️ Quanta SDK¶
AI-native quantum computing SDK for Python
The quantum runtime built for AI agents, researchers, and production workloads
-
Quick Start
Get up and running in 5 minutes with your first quantum circuit.
-
Tutorials
8 step-by-step tutorials from basics to IBM hardware.
-
API Reference
Auto-generated from docstrings — every class, function, and module.
-
Migration Guides
Coming from Qiskit, PennyLane, or Cirq? We've got you covered.
Why Quanta?¶
| Feature | Quanta | Qiskit | Cirq | PennyLane |
|---|---|---|---|---|
| MCP Server | ✅ 20 tools | ❌ | ❌ | ❌ |
| Dependencies | 1 (numpy) | 20+ | 10+ | 10+ |
| IBM Hardware | Built-in REST | Via Provider | No | Via plugin |
| QEC | 7 codes, 2 decoders | No | No | No |
| Install time | ~2s | ~60s | ~30s | ~30s |
Install¶
Hello Quantum¶
from quanta import circuit, H, CX, measure, run
@circuit(qubits=2)
def bell(q):
H(q[0])
CX(q[0], q[1])
return measure(q)
result = run(bell, shots=1000)
print(result) # {'00': ~500, '11': ~500}
MCP AI Integration¶
20 tools · 5 resources · 4 guided prompts — ready for Claude, GPT, and other AI assistants.