quarkus-qutebrowser

quarkus-qutebrowser

3.1

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

Quarkus-Qutebrowser is a project that integrates Qutebrowser with Quarkus to provide IPC and MCP capabilities, enabling AI agents to interact with the browser.

quarkus-qutebrowser

This is a fun little project that adds IPC and MCP capabilities to Qutebrowser using Quarkus. In English:

It provides a CLI that allows you to:

  • list tabs
  • select tabs
  • read the text of a tab

But also, it exposes this functionality to AI agents using the MCP protocol.

Motivation

I often find myself copying and pasting stuff from the browser to my editor. Most of the time the copied text requires formatting or some other kind of processing. AI agents or editor tooling can help with the formatting, but does not help with the copying and pasting.

So, what if the tool or the AI agent could talk to the browser and get the text for me ? This is exactly the kind of integration this project enables.

Building

Build the project in native mode:

./mvnw clean install -Pnative

Copy the generated binary to your PATH as quteb:

cp target/quarkus-qutebrowser-${your version here}-runner $HOME/bin/quteb

Alternatively you can build in JVM mode and create an alias:

alias quteb='java -jar /path/to/quarkus-qutebrowser/target/quarkus-app/quarkus-run.jar'

This way you can run the CLI with:

Usage

CLI

Listing tabs

quteb tabs list

Selecting tabs

quteb tabs select <text to fuzilly match url or title>

Reading tabs

quteb tabs read <text to fuzilly match url or title>

MCP

To start an MCP server, providing all the above functionality, you can use:

quteb --mcp