Appearance
Are you an LLM? You can read better optimized documentation at /agentic/mcp-server.md for this page in Markdown format
Agent-Ready with MCP Server
The Kipu Quantum Hub is now agent-ready, meaning you can access and manage your quantum computing resources directly through your favorite AI assistants like Claude, GitHub Copilot, and other AI-powered development tools. This opens up exciting new possibilities for working with quantum computing in a more natural, conversational way.
Imagine describing what you want to achieve in plain language and having your AI assistant handle the complexities of job submission, circuit optimization, and result analysis. Whether you're prototyping quantum algorithms, managing computational resources, or analyzing experimental results, your AI agent can now assist you every step of the way.
The Kipu Quantum Hub MCP Server
The Kipu Quantum Hub MCP Server is a hosted Model Context Protocol (MCP) server that bridges AI assistants with the Kipu Quantum Hub platform. It runs remotely at https://api.hub.kipu-quantum.com/mcp — there is nothing to install. MCP is an open standard that enables AI assistants to securely connect to external tools and data sources, extending their capabilities beyond conversation into real-world actions.
By connecting your AI assistant to the Kipu Quantum Hub MCP server, you give it the ability to:
- Access your quantum resources — query available quantum hardware, check system status, and view your computational quotas
- Manage quantum jobs — submit, monitor, and retrieve results from quantum computations
- Work with quantum circuits — help you design, optimize, and execute quantum algorithms
- Streamline your workflow — handle routine tasks so you can focus on the science and innovation
The server exposes its capabilities as tools in two namespaces:
hub_*— core Hub platform API (services, data pools, applications, use cases, …)quantum_*— Quantum Workloads API (quantum jobs, sessions, backends, …)
Plus a top-level run_subscribed_service tool to invoke services you are subscribed to.
Prerequisites
- An MCP-capable AI client (Claude Desktop, Claude Code, Cursor, VS Code with an MCP extension, …)
- A Kipu Quantum Hub account — sign up at https://hub.kipu-quantum.com
Authentication
The server authenticates via OAuth. The first time your AI client connects, it opens a browser window where you log in to the Kipu Quantum Hub and authorize access. No tokens or credentials are stored in your config files.
If your client does not open the login page automatically, trigger the connection (for example, list the server's tools) and follow the authorization link it provides.
Configure Your AI Agent
The server is a remote HTTP MCP server at https://api.hub.kipu-quantum.com/mcp. Add it to your client using the snippets below, then restart the client to load it. On first use you will be prompted to authorize access in your browser.
Claude Desktop
Open Settings → Connectors → Add custom connector and enter the URL:
https://api.hub.kipu-quantum.com/mcpClaude Code
Register the server with the CLI:
shell
claude mcp add --transport http qhub-mcp https://api.hub.kipu-quantum.com/mcpOr add it manually to .mcp.json (per-project) or ~/.claude.json (global):
json
{
"mcpServers": {
"qhub-mcp": {
"type": "http",
"url": "https://api.hub.kipu-quantum.com/mcp"
}
}
}Cursor
Edit ~/.cursor/mcp.json (global) or .cursor/mcp.json (per-project):
json
{
"mcpServers": {
"qhub-mcp": {
"url": "https://api.hub.kipu-quantum.com/mcp"
}
}
}VS Code
Add to your user or workspace settings.json (requires an MCP-capable extension such as GitHub Copilot Chat in agent mode):
json
{
"mcp": {
"servers": {
"qhub-mcp": {
"type": "http",
"url": "https://api.hub.kipu-quantum.com/mcp"
}
}
}
}Other MCP clients
Any MCP client that supports remote HTTP (streamable) servers can connect to:
url:https://api.hub.kipu-quantum.com/mcptransport/type:http
The client handles the OAuth login on first connect.
What You Can Do
With the Kipu Quantum Hub MCP server connected to your AI assistant, you can:
Natural Language Quantum Computing
Describe what you want to accomplish in natural language, and your AI assistant will help translate that into quantum operations on the Kipu Quantum Hub.
Streamlined Workflows
- Quickly submit quantum jobs without context-switching between tools
- Monitor multiple jobs and get intelligent summaries of their status
- Retrieve and analyze results with AI-assisted interpretation
Intelligent Resource Management
- Ask about available quantum hardware and get recommendations
- Check your computational quotas and resource usage
- Plan and schedule quantum experiments efficiently
Development Assistance
- Get help designing quantum circuits with real-time feedback
- Debug quantum algorithms with AI-powered analysis
- Optimize circuits for specific quantum hardware architectures
Example Use Cases
"What quantum backends are currently available on the Kipu Quantum Hub? Which one would be best for a 20-qubit circuit?"
"I want to learn about use cases for quantum computing in finance. What use cases are described on the Kipu Quantum Hub?"
"Help me find suitable services on the Kipu Quantum Hub for my optimization problem."
"Retrieve the results from my last three quantum jobs and compare their results."
"How do I get started using Kipu's Illay Base Quantum Optimizer?"
Additional Resources
- Endpoint:
https://api.hub.kipu-quantum.com/mcp - Dashboard: https://dashboard.hub.kipu-quantum.com
Support
For issues, feature requests, or contributions, please visit the Discord Server and let us know.
Ready to supercharge your quantum computing workflow with AI? Connect the Kipu Quantum Hub MCP server and start exploring what's possible when you combine the power of quantum computing with intelligent assistance.

