What is Nabsun?
It’s an open-source browser built with Chromium and Electron, with an assistant that can read pages, compare things across tabs, and use the browser’s own tools to get a task done. The rest of the time it’s an ordinary browser — bookmarks, saved passwords, downloads, session restore, all where you’d expect them.
Can Nabsun run AI models offline?
Yes — the built-in Qwen3 model runs on your CPU, with no key and nothing leaving the machine. An installed copy already has it; if you build from source, you fetch the engine and weights once. Browsing the actual web, of course, still needs a network.
How does Nabsun use MCP?
It works both ways. Nabsun runs an MCP server, so an agent in your editor — Claude Code, Codex, or anything else that speaks MCP — can drive your real, signed-in tabs. It also hosts MCP servers of its own, whose tools join the same list the sidebar uses. Either way the tools and the approval prompts are the same, and the bridge listens only on loopback, with a token that changes every launch.
Do AI agents need approval before taking actions?
Yes. Reading a page is automatic; clicking, typing, navigating, and running code all stop and ask. Autopilot waves through clicks, typing, and navigation for the session if you’d rather work uninterrupted. It deliberately stops short of running code on a page — that sits behind its own setting, off by default. The assistant also can’t touch password or one-time-code fields at all, and a denial is final — it’s told not to look for a way round it.
Which AI providers can I use?
The built-in model, your own Ollama server, an Anthropic or OpenAI key, or the Claude Code and Codex CLIs you’ve already signed into — those keep their own credentials, so nothing is stored in the browser. Worth remembering that a cloud provider sees whatever context you send it, and will bill you for it.
Does it remember anything about me?
Only what you write down yourself. There is a Markdown file in your profile folder called soul.md — your name, your time zone, how much detail you want, anything you would otherwise retype every session. Settings shows you exactly where it lives and opens it in your editor. It is yours: nothing rewrites it, and a line you delete stays deleted. By default it is only ever given to a model running on your own machine, so Anthropic, OpenAI and the signed-in CLIs never receive it unless you switch that off. Settings names the provider you are using and says whether the file is being shared or withheld.
How do I install it?
Download the Windows installer from the releases page — there is a setup version that adds a Start-menu entry, and a portable single executable that runs without installing. Both already contain the built-in model, so they work offline straight away, and both are around 1.3 GB for that reason. They are not code-signed yet, so Windows will show a SmartScreen warning: choose More info → Run anyway. Checksums are published alongside, and you can verify one with Get-FileHash <file> -Algorithm SHA256. macOS and Linux builds are configured but not yet produced.
Can I extend it?
Three ways. Drop a folder of JavaScript into the plugins directory and the tools you register show up to the model like the built-in ones. Add an MCP server and its tools join the same list. Or load an unpacked Chrome extension — content scripts, storage, and much of the tabs and webRequest APIs work on the same Chromium engine.