Skip to main content

Datalayer

Become a Sponsor

🪐 Jupyter Kernel Client through HTTP and WebSocket

Github Actions Status PyPI - Version

Jupyter Kernel Client allows you to connect to live Jupyter Kernels through HTTP and WebSocket.

A Kernel is the process responsible to execute the notebook code.

Jupyter Kernel Client also provides a easy to use interactive Konsole (console for Kernels aka REPL, Read-Evaluate-Print-Loop).

To install the library, run the following command.

pip install jupyter_kernel_client

Usage

Check you have a Jupyter Server with ipykernel running somewhere. You can install those packages with the following command.

pip install jupyter-server ipykernel
  1. Start a Jupyter Server.
# make jupyter-server
jupyter server --port 8888 --ServerApp.port_retries 0 --IdentityProvider.token MY_TOKEN
  1. Launch a IPython REPL in a terminal with ipython (or jupyter console). Execute the following snippet (update the server_url and token if needed).
import os

from platform import node
from jupyter_kernel_client import KernelClient

with KernelClient(server_url="http://localhost:8888", token="MY_TOKEN") as kernel:
    code = """import os
from platform import node
print(f"Hey {os.environ.get('USER', 'John Smith')} from {node()}.")
"""
    reply = kernel.execute(code)
    print(reply)
    assert reply["execution_count"] == 1
    assert reply["outputs"] == [
        {
            "output_type": "stream",
            "name": "stdout",
            "text": f"Hey {os.environ.get('USER', 'John Smith')} from {node()}.\n",
        }
    ]
    assert reply["status"] == "ok"

Check the response.

{"execution_count": 1, "outputs": [{"output_type": "stream", "name": "stdout", "text": "Hey echarles from eric.\n"}], "status": "ok"}

Instead of using the kernel client as context manager, you can call the start() and stop() methods.

from jupyter_kernel_client import KernelClient

kernel = KernelClient(server_url="http://localhost:8888", token="MY_TOKEN")
kernel.start()
reply = kernel.execute(code)
print(reply)
kernel.stop()

Connect to an existing Kernel

First start JupyterLab, open a Notebook with a Kernel and take not of the Kernel ID.

TODO: Document how to get the Kernel ID.

make jupyterlab

You can now connect to the existing Kernel and run code (do not invoke stop).

from jupyter_kernel_client import KernelClient

kernel = KernelClient(server_url="http://localhost:8888", kernel_id="83ef59b7-9c78-40bd-8cc2-4447635e7d0b", token="MY_TOKEN")
kernel.start()
reply = kernel.execute("x=1")
print(reply)

Connect to a Google Colab Kernel

Google Colab exposes a Jupyter-compatible kernel behind an authenticating proxy. Use ColabKernelClient to connect to it. You obtain the server_url, kernel_id, and proxy_token from Colab's runtime assignment API.

Option A: connect to an existing Colab kernel

from jupyter_kernel_client import ColabKernelClient

kernel = ColabKernelClient(
    server_url="https://<colab-host>",
    kernel_id="<kernel_id>",
    proxy_token="<proxy_token>",
)
kernel.start()
reply = kernel.execute("x = 1")
print(reply)
# Do not shut down the Colab kernel; disconnect only.
kernel.stop(shutdown_kernel=False)

Option B: create a new kernel on the assigned Colab runtime

If you omit kernel_id, the client creates a new kernel when start() is called. This uses the standard Jupyter POST /api/kernels endpoint on your assigned Colab runtime proxy.

from jupyter_kernel_client import ColabKernelClient

kernel = ColabKernelClient(
    server_url="https://<colab-host>",
    proxy_token="<proxy_token>",
)
kernel.start()  # Creates a new kernel on the assigned runtime.
print("kernel_id:", kernel.id)
reply = kernel.execute("x = 1 + 1; print(x)")
print(reply)

# You likely own this kernel if you created it from this client.
kernel.stop(shutdown_kernel=True)

ColabKernelClient forwards the proxy token both as the X-Colab-Runtime-Proxy-Token header and the colab-runtime-proxy-token WebSocket query parameter, which the Colab proxy requires for authentication.

How to obtain the Colab connection info

The three values (server_url, kernel_id, proxy_token) are the pieces of the WebSocket URL that Colab's own frontend uses to reach your assigned runtime:

wss://<host>/api/kernels/<kernel_id>/channels?session_id=<...>&colab-runtime-proxy-token=<proxy_token>&colab-client-agent=web

For example:

wss://<colab-host>/api/kernels/<kernel_id>/channels?session_id=<session_id>&colab-runtime-proxy-token=<proxy_token>&colab-client-agent=web

They are tied to your Colab session and are short-lived — they change whenever the runtime is reassigned or reconnected, so re-fetch them after reconnecting.

The easiest way to read them is through your browser's developer tools:

  1. Open your notebook on colab.research.google.com and connect to a runtime (Runtime → Connect, or run any cell).
  2. Open DevTools (F12) → Network tab and select the WS filter (or type kernels in the filter box).
  3. Run a cell to trigger kernel traffic.
  4. Click the .../api/kernels/<kernel_id>/channels?... request and read off:
    • server_url — the scheme + host before /api/kernels (change the wss:// scheme to https://). Colab assigns a per-session host such as https://<colab-host>.prod.colab.dev; there is usually no /tun/m/... path segment.
    • kernel_id — the UUID segment right after /api/kernels/.
    • proxy_token — the colab-runtime-proxy-token query parameter (this is the same value as the X-Colab-Runtime-Proxy-Token request header). Ignore the session_id and colab-client-agent query parameters.

The programmatic "runtime assignment API" is the internal endpoint the Colab frontend calls (authenticated with your Google session); it is not an officially published public API, so the DevTools method above is the practical way to obtain the values.

Can I provision a Colab runtime "from zero" with a credential?

Not for consumer Colab. There is no official public API or Python SDK, and no API key, that lets you create or assign a colab.research.google.com runtime from a standalone process. Colab's own FAQ disallows bypassing the notebook UI to drive runtimes programmatically. So even with a credential in an environment variable, you cannot start a consumer Colab runtime from scratch.

The supported workflow is therefore two-step:

  1. Obtain runtime assignment info (server_url, proxy_token, and optionally kernel_id) from an active Colab browser session (see the DevTools steps above).
  2. Use ColabKernelClient to either connect to an existing kernel (Option A) or create a new kernel on that already-assigned runtime (Option B).

For a true "from zero" flow, use Colab Enterprise instead. Colab Enterprise on Google Cloud does let you provision runtimes programmatically (via the Agent Platform API, gcloud, Terraform, or the google-cloud-aiplatform Python client), authenticated with Google Cloud credentials (a service account through GOOGLE_APPLICATION_CREDENTIALS / Application Default Credentials — not a Colab API key). Note that Colab Enterprise runtimes are designed to be driven through the Colab Enterprise notebook UI, so a raw public Jupyter-kernel WebSocket endpoint for this client is not a documented interface. Colab Enterprise provisioning is out of scope for jupyter-kernel-client.

Browser bridge: get the connection info from an authenticated session

Manually copying server_url / kernel_id / proxy_token out of DevTools is tedious. The browser bridge automates the handoff using the same pattern as Google's own colab-mcp: a short-lived local WebSocket server receives the runtime details directly from your already-authenticated Colab browser tab. Google credentials never leave the browser — the bridge only exchanges a one-time local token.

from jupyter_kernel_client import request_colab_connection

# Opens a Colab page, then waits for the browser to post the runtime details
# back to a localhost WebSocket protected by a generated token.
info = request_colab_connection(timeout=60)

with info.to_kernel_client() as kernel:
    print(kernel.execute("print(1 + 1)"))

How it works:

  1. A localhost WebSocket server starts on a random port with a generated token (secrets.token_urlsafe) and an Origin allowlist restricted to the Colab domains.

  2. A Colab page is opened with the token and port in the URL fragment (#bridgeToken=<token>&bridgePort=<port>).

  3. The authenticated Colab tab connects back to ws://localhost:<port>/?access_token=<token> (or with an Authorization: Bearer <token> header) and sends a JSON payload:

    {
      "server_url": "https://<colab-host>",
      "proxy_token": "<proxy_token>",
      "kernel_id": "<kernel_id>"
    }
    

    Aliases such as serverUrl, proxyToken / colab-runtime-proxy-token, and kernelId are also accepted; kernel_id is optional (omit it to create a new kernel via Option B).

The browser side must run a cooperating page, extension or userscript that reads bridgeToken / bridgePort from the launch URL and posts the payload. This library implements the local half of the handshake; it does not add an unofficial Colab API.

Reusing the bridge for other services

request_colab_connection is a thin preset over a fully generic, configurable primitive. BrowserBridgeServer (async) and request_payload (sync) can bridge any browser-authenticated service — configure the host, port, token, allowed origins, subprotocols, launch URL and auth parameter as needed:

from jupyter_kernel_client import request_payload

payload = request_payload(
    launch_url="https://my-service.example/bridge#token={token}&port={port}",
    allowed_origins=["https://my-service.example"],
    timeout=60,
)

Async usage (e.g. inside an existing event loop such as an MCP server):

from jupyter_kernel_client import ColabBridge

async with ColabBridge(open_browser=True) as bridge:
    info = await bridge.receive_connection(timeout=60)
    kernel = info.to_kernel_client()

This is why the bridge lives in jupyter-kernel-client: code-sandboxes (ColabSandbox(use_browser_bridge=True)) and jupyter-mcp-server reuse the same implementation. Install the optional dependency with pip install 'jupyter-kernel-client[bridge]'.

Jupyter Konsole aka Console for Kernels

This package can be used to open a Jupyter Console to a Jupyter Kernel 🐣.

  1. Install the optional dependencies.
pip install jupyter-kernel-client[konsole]
  1. Start a Jupyter Server.
# make jupyter-server
jupyter server --port 8888 --ServerApp.port_retries 0 --IdentityProvider.token MY_TOKEN
  1. Start the konsole and execute code.
# make jupyter-konsole
jupyter konsole --url http://localhost:8888 --token MY_TOKEN
[KonsoleApp] KernelHttpManager created a new kernel:...
Jupyter Konsole...

In [1]: 1+1
2

Uninstall

To remove the library, execute the following command.

pip uninstall jupyter_kernel_client

Contributing

Development install

# Clone the repo to your local environment
# Change directory to the jupyter_kernel_client directory
# Install package in development mode, this will automatically enable the server extension.
pip install -e ".[konsole,test,lint,typing]"

Running Tests

Install dependencies.

pip install -e ".[test]"

Run the python tests.

pytest

Development uninstall

pip uninstall jupyter_kernel_client

Packaging the library

See RELEASE

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

jupyter_kernel_client-0.14.0-py3-none-any.whl (56.8 kB view details)

Uploaded Python 3

File details

Details for the file jupyter_kernel_client-0.14.0-py3-none-any.whl.

File metadata

File hashes

Hashes for jupyter_kernel_client-0.14.0-py3-none-any.whl
Algorithm Hash digest
SHA256 1141901ec0df0bdc4ed7191ed21cb23228d6fe29214530df07f2716443ca8f57
MD5 0a69b1c3dccaf8e32d6fd2c1654e4766
BLAKE2b-256 145f677db210b28503d78c28fe005d045d20d9d702d6e31d2b0b63eb9a547aaa

See more details on using hashes here.

Release history Release notifications | RSS feed

1.0.1

1 file

1.0.0

1 file

0.15.0

1 file

This release

0.14.0 This release

1 file

0.13.0

1 file

0.12.0

1 file

0.11.0

1 file

0.9.0

1 file

0.8.0

1 file

0.7.3

1 file

0.7.2

1 file

0.7.1

1 file

0.7.0

1 file

0.6.0

2 files

0.5.1

2 files

0.5.0

2 files

0.4.0

2 files

0.3.1

2 files

0.3.0

2 files

0.2.0

2 files

0.1.4

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page