Quickstart
This guide gets you from zero to your first agent-ready capture in about 5 minutes. By the end, you will have the Chrome extension installed, the local MCP bridge running in your repo, and a coding agent connected.
Prerequisites
- Node.js 18 or newer
- Google Chrome (or a Chromium-based browser)
- Claude Code, Codex CLI, or Cursor installed locally
1. Install the Chrome extension
The extension adds the Quey toolbar to every web page you visit. It never runs in the background — it only activates when you click the toolbar icon.
- 1
Open the Chrome Web Store listing
Go to the Quey extension page in the Chrome Web Store.
- 2
Click Add to Chrome
Accept the permissions prompt. Quey requests
storage,activeTab,scripting, andcaptureVisibleTab— all used for the inspect and capture workflow. - 3
Pin the extension
Click the puzzle icon in the Chrome toolbar and pin Quey so the icon is always visible. Click the icon on any page to activate the toolbar.
2. Start the MCP bridge
The MCP bridge is a local server that receives captures from the extension and exposes them to your coding agent. Run it inside the repo you want the agent to edit.
Install the CLI
npm install -g @uitoolbar/cliStart the bridge
cd /path/to/your/project
uitoolbar bridge startThe bridge starts on port 4747 by default. You should see:
✓ Quey MCP bridge running on http://localhost:4747
✓ HTTP bridge ready — extension can connect
✓ MCP stdio ready — agent can connectserver mode — HTTP bridge and MCP stdio in the same process. This is required so the extension and agent share the same capture state. See MCP server modes for details.3. Register the MCP server
Run the mcp add command to register Quey with your coding client. This writes a .mcp.json entry to the current project.
uitoolbar mcp addThis generates:
{
"mcpServers": {
"quey": {
"command": "npx",
"args": ["-y", "@uitoolbar/mcp", "server"],
"env": {
"TOOLBAR_AUTO_RUN": "0",
"TOOLBAR_CODEX_CWD": "/path/to/your/project"
}
}
}
}.mcp.json file in your project root is picked up automatically. For Cursor, you may need to add the server via Settings → MCP.4. Send your first capture
- 1
Open the page you want to edit
Navigate to your local dev server (
localhost:3000or similar) in Chrome. - 2
Activate Quey
Click the Quey icon in the Chrome toolbar. The floating toolbar appears in the top-right corner.
- 3
Select an element
Click the Select mode (cursor icon). Hover over any element — a blue highlight and label appear. Click to lock the selection.
- 4
Type your instruction and send
Switch to the Agent tab. Type your instruction — for example: "Increase the padding and fix the text contrast." Click Send.
- 5
Approve the diff
The agent processes the capture, edits the file, and surfaces an inline diff in the toolbar. Click Approve to keep the changes or Reject to roll back.
Next steps
- Agent workflow — understand the full capture lifecycle
- Approval modes — control when the agent runs automatically
- Auto-run — enable fully hands-free agent execution
- Configuration — all environment variables
- MCP tools reference — the full tool surface for agents