# Proxy servers not visible in Jupyterlab launcher

**URL:** https://community.orangeqs.com/t/proxy-servers-not-visible-in-jupyterlab-launcher/126
**Category:** Community Support
**Created:** [July 24, 2026, 9:43am UTC](https://community.orangeqs.com/t/proxy-servers-not-visible-in-jupyterlab-launcher/126 "2026-07-24T09:43:26Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![TimVroomans](https://avatars.discourse-cdn.com/v4/letter/t/4da419/32.png) [@TimVroomans](https://community.orangeqs.com/u/TimVroomans)
#### Post date: [July 24, 2026, 9:43am UTC](https://community.orangeqs.com/t/proxy-servers-not-visible-in-jupyterlab-launcher/126/1 "2026-07-24T09:43:26Z")

</div>

After updating to 26.29.0 I seem to have lost the proxy kernels to all services except for the device service. Is this intentional?

 ![image](https://canada1.discourse-cdn.com/flex029/uploads/orangeqs/original/1X/82f234aed2cfa739fa37d9be2a489dbf50c3c99d.png)

I am still able to communicate with the services via the API provided by the Client.

 ![image](https://canada1.discourse-cdn.com/flex029/uploads/orangeqs/original/1X/0b51fc379dabc8685b99870df23b8c9280c97347.png)

We like to use the proxy kernels in our workflow. Is there a way to get the proxy kernels back?

---

<div class="post-metadata">

### Author: ![Wiggert](https://avatars.discourse-cdn.com/v4/letter/w/3ec8ea/32.png) [@Wiggert](https://community.orangeqs.com/u/Wiggert)
#### Post date: [July 24, 2026, 10:50am UTC](https://community.orangeqs.com/t/proxy-servers-not-visible-in-jupyterlab-launcher/126/2 "2026-07-24T10:50:48Z")

</div>

Hi Tim,

This is due to [this change](https://gitlab.com/orangeqs/juice/-/merge_requests/387) which came with version 26.24.0. The relevant change is the addition of the `install_proxy` boolean in a services’s entry in the `orchestration.toml`. This determines whether or not a proxy kernel appears in the jupyterlab interface.

To have your services appear as selectable in the jupyterlab interface, you need to set `install_proxy=true`, as is done in the snippet below

```auto
[services.system-monitor]
entrypoint = "orangeqs.juice.system_monitor._service:SystemMonitorService"
install_proxy = true

```

Hope that helps!

---

<div class="post-metadata">

### Author: ![Wiggert](https://avatars.discourse-cdn.com/v4/letter/w/3ec8ea/32.png) [@Wiggert](https://community.orangeqs.com/u/Wiggert)
#### Post date: [July 24, 2026, 10:54am UTC](https://community.orangeqs.com/t/proxy-servers-not-visible-in-jupyterlab-launcher/126/3 "2026-07-24T10:54:03Z")

</div>

I am also quite intrigued by the services you have instantiated. Would you be willing to share more on what you use each service for?

---

<div class="post-metadata">

### Author: ![TimVroomans](https://avatars.discourse-cdn.com/v4/letter/t/4da419/32.png) [@TimVroomans](https://community.orangeqs.com/u/TimVroomans)
#### Post date: [July 30, 2026, 9:06am UTC](https://community.orangeqs.com/t/proxy-servers-not-visible-in-jupyterlab-launcher/126/4 "2026-07-30T09:06:10Z")

</div>

Hi Wiggert, yes of course!

These services are to interact with [quantum inspire](https://www.quantum-inspire.com/) (QI) as a hardware backend. We use the `broker` to manage access to the `device` service. When a user of QI submits a job to one of the backends that we host, the `qi_receiver` locks the `broker` such that the user can run their job without me interfering. The `qi_publisher` publishes the status of the backend (IDLE, EXECUTING, OFFLINE, CALIBRATING or BENCHMARKING) back to QI. The `calibration_coordinator` automatically runs graph-based recalibrations of the device such that the performance stays up to spec.

I’m sure this can be done a lot more efficiently in the current implementation of juice. All these services were needed considering the juice implementation before juice-core. Not enough time in a PhD week to do so, though 😉

Feel free to check out the Tuna-9 and Tuna-17 backends and the [dashboards](https://monitoring.qutech.support/public-dashboards/b9a0daeda64d4044b88f78b40ba5482a)where we publish the current status and latest performance of the QI hardware backends.

---

<div class="post-metadata">

### Author: ![TimVroomans](https://avatars.discourse-cdn.com/v4/letter/t/4da419/32.png) [@TimVroomans](https://community.orangeqs.com/u/TimVroomans)
#### Post date: [July 30, 2026, 9:36am UTC](https://community.orangeqs.com/t/proxy-servers-not-visible-in-jupyterlab-launcher/126/5 "2026-07-30T09:36:51Z")

</div>

This worked, thank you very much!
