Skip to content

⚛️ 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.

    Getting Started

  • Tutorials


    8 step-by-step tutorials from basics to IBM hardware.

    Tutorials

  • API Reference


    Auto-generated from docstrings — every class, function, and module.

    API Reference

  • Migration Guides


    Coming from Qiskit, PennyLane, or Cirq? We've got you covered.

    Migration


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

pip install quanta-sdk

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

# Add to Claude Desktop
fastmcp install quanta/mcp_server.py --name "Quanta Quantum SDK"

20 tools · 5 resources · 4 guided prompts — ready for Claude, GPT, and other AI assistants.