MCP server exposing Qiskit 2.3.1 quantum computing functionality
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
MCP server exposing Qiskit 2.3.1 quantum computing functionality through the Model Context Protocol. Enables LLMs to create, manipulate, and execute quantum circuits via standardized MCP tools and resources.
mcp-name: io.github.daedalus/mcp-qiskit
This project provides a Model Context Protocol (MCP) server that exposes Qiskit quantum computing functionality to Large Language Models (LLMs). It allows AI assistants to:
The [qiskit] extra installs the required Qiskit dependencies. Other extras available:
Add to your claude_desktop_config.json:
Add to your Cursor settings under MCP Servers:
Creates an empty quantum circuit with specified number of qubits and classical bits.
Parameters:
num_qubits (int): Number of quantum bitsnum_classical_bits (int): Number of classical bits for measurementsReturns: Dictionary representing the circuit
Example:
Adds a quantum gate to a circuit. This tool maintains circuit state between calls.
Parameters:
circuit (dict, optional): The circuit to modify. If None, creates a new 8-qubit circuit with 8 classical bits automatically.gate_name (str): Name of the gate (e.g., "h", "x", "cx", "rx")qubits (list[int]): List of qubit indices to apply the gate to. Can be a single qubit (e.g., [0]) or multiple qubits (e.g., [0, 1, 2, 3]). When multiple qubits are specified for a single-qubit gate, the gate is applied to each qubit.params (list[float], optional): Parameters for parameterized gatesSupported Gates:
h, x, y, z, s, t, sdg, tdg, i, idrx, ry, rz, u1, u2, u3, pcx, cy, cz, swapmcx, mct, mcp, ccx, toffoli, c3x, c3sx, c4xrxx, ryy, rzz, ch, cswap, cu, crx, cry, crzState Maintenance Pattern: Always pass the circuit returned by the previous call to maintain state:
Apply Single-Quantum Gate to Multiple Qubits:
When applying single-qubit gates (like h, x, y, z, etc.) to multiple qubits at once, use a list of qubit indices:
Adds multiple quantum gates to a circuit in a single call. This tool maintains circuit state between calls and reduces the number of tool calls needed.
Parameters:
circuit (dict, optional): The circuit to modify. If None, creates a new 8-qubit circuit with 8 classical bits automatically.gates (list[dict]): List of gate specifications, each containing:
gate (str): Name of the gate (e.g., "h", "x", "cx", "rx")qubits (list[int]): Qubit indices to apply the gate toparams (list[float], optional): Parameters for parameterized gatesExample:
Adds measurement operations to qubits. This tool maintains circuit state between calls.
Parameters:
circuit (dict, optional): The circuit to modify. If None, creates a new 8-qubit circuit with 8 classical bits automatically.qubits (list[int]): Qubit indices to measureclbits (list[int], optional): Classical bit indices to store resultsExample:
Returns the depth (number of layers) of the circuit.
Parameters:
circuit (dict): The circuit to analyzeReturns: Integer representing circuit depth
Lists all available quantum gates in Qiskit.
Returns: List of gate name strings
Gets detailed information about a quantum gate.
Parameters:
gate_name (str): Name of the gateReturns: Dictionary with gate properties:
name: Gate namenum_qubits: Number of qubits the gate operates onnum_parameters: Number of parameters (0 for fixed gates)params: List of parameter valuesRenders a circuit in various formats.
Parameters:
circuit (dict): The circuit to drawoutput_format (str): Output format - "ascii", "text", "mpl", "latex"Returns: String representation of the circuit
Example Output (ASCII):
Lists available quantum backends.
Parameters:
filters (dict, optional): Filter criteria (e.g., {"status": "ONLINE"})Returns: List of backend information dictionaries
Gets status information for a backend.
Parameters:
backend_name (str): Name of the backendReturns: Dictionary with:
name: Backend namestatus: Status (ONLINE/OFFLINE)num_qubits: Number of qubitsGets detailed configuration for a backend.
Parameters:
backend_name (str): Name of the backendReturns: Dictionary with:
name: Backend namenum_qubits: Number of qubitscoupling_map: Qubit connectivity (if applicable)basis_gates: List of available basis gatesmax_shots: Maximum allowed shotsExecutes a single quantum circuit.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/mcp-qiskit)<a href="https://allmcps.com/mcp/mcp-qiskit"><img src="https://allmcps.com/api/badge/mcp-qiskit?style=directory" alt="MCP Qiskit on AllMCPs" /></a>