quasar-mcp-server

itsubaki/quasar-mcp-server

3.2

If you are the rightful owner of quasar-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.

The quasar MCP Server is designed to run code written in OpenQASM format, facilitating quantum computing tasks.

quasar-mcp-server

  • An MCP server that runs code written in OpenQASM 3.0 format

Examples

Running a Bell State Circuit with OpenQASM 3.0

GitHub Copilot

Deployment and Configuration

  1. Deploy quasar to Cloud Run.
  2. Deploy quasar-mcp-server to Cloud Run.
  3. Configure the settings.json.
make build deploy
{
    "mcp": {
        "servers": {
            "quasar": {
                "type": "http",
                "url": "https://${YOUR_CLOUD_RUN_SERVICE_URL}.run.app/mcp"
            }
        }
    }
}

Invoking an Authenticated Cloud Run Service from localhost

make proxy
{
    "mcp": {
        "servers": {
            "quasar": {
                "type": "http",
                "url": "http://127.0.0.1:3000/mcp"
            }
        }
    }
}