Sign In

@kitewright/mcp

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@kitewright/mcp

Kitewright browser-automation MCP server — run with npx, no build step. Backed by the Rust kite engine.

Source
npmnpm
Version
0.1.1
Version published
Weekly downloads
102
36%
Maintainers
1
Weekly downloads
 
Created
Source

@kitewright/mcp

Run the kitewright browser-automation MCP server with npx — no build step, no cargo. A tiny launcher that resolves the prebuilt kite binary for your platform and starts it over stdio.

Use it

Claude Code

claude mcp add kitewright -- npx -y @kitewright/mcp

Cursor / any MCP client (mcp.json)

{
  "mcpServers": {
    "kitewright": {
      "command": "npx",
      "args": ["-y", "@kitewright/mcp"]
    }
  }
}

That's it — npx @kitewright/mcp with no args starts a stdio MCP server. Pass flags through for other modes (e.g. npx @kitewright/mcp --http for the HTTP transport).

How it works

The prebuilt kite binary ships as an optional per-platform dependency (@kitewright/mcp-darwin-arm64, -darwin-x64, -linux-x64-gnu, -win32-x64-msvc) — npm installs only the one matching your OS/arch, the same pattern esbuild and napi use. The launcher require.resolves it and execs it.

  • Override the binary with KITE_BINARY=/path/to/kite (local dev / custom build).
  • If no prebuilt package covers your platform, install from source: cargo install --git https://github.com/kitewright/kitewright kitewright.

Config

All kitewright env vars apply (KITE_HEADLESS, KITE_IDLE_TIMEOUT_SECS, KITE_ALLOW_SECRET_FILES, …) — see the main README.

Keywords

mcp

FAQs

Package last updated on 17 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