🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

newton-browser

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

newton-browser

Local stdio MCP host and localhost WebSocket relay for the Newton Browser extension.

latest
Source
npmnpm
Version
0.4.1
Version published
Maintainers
1
Created
Source

Newton Browser Host

Local MCP host for the Newton Browser extension.

Run

newton-browser

The host listens on 127.0.0.1:17321, exposes an MCP server over stdio, and relays commands to the loaded unpacked Newton Browser extension over localhost WebSocket. It has no database and no platform dependency.

Extension Pairing

  • Build the extension runtime:

    pnpm extension:build
    
  • Load unpacked from:

    apps/extension
    
  • Start this host process. The extension discovers the localhost host in the background; the popup only shows connected/disconnected status.

MCP Tools

The stdio server exposes the browser.* tools documented in the canonical skill.

MCP Client Config

Use the host as a stdio MCP server. Keep normal network access disabled for the calling agent when you want local-only operation; the extension and host only need localhost.

{
  "mcpServers": {
    "newton-browser": {
      "command": "npx",
      "args": ["-y", "newton-browser"]
    }
  }
}

Install the extension first, then use this npx configuration in Codex, Claude Code, Claude Desktop, or any compatible stdio client. Development can run the compiled apps/mcp-server/dist/index.js after pnpm build.

Privacy Boundary

The host and extension run on the user's machine. Browser control traffic stays on localhost. Page observations and screenshots only leave the machine if the calling agent sends them to its model provider.

Safety

The host runs the Newton Browser safety floor before relaying mutating actions. Blocked actions return a blocked result. Commit-like actions are relayed without a human approval prompt; Newton Browser is a local hands-and-eyes tool for the worker, not a moderation layer.

Keywords

mcp

FAQs

Package last updated on 12 Jul 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts