MCP Servers

A collection of Model Context Protocol servers, templates, tools and more.

N
Nix Chrome Devtools MCP

Nix-based launcher for chrome-devtools-mcp; shares Playwright's bundled Chrome-for-Testing.

Created 5/13/2026
Updated about 7 hours ago
Repository documentation and setup instructions

nix-chrome-devtools-mcp

One-click setup for the Chrome DevTools MCP server in any Nix-based project. Delivered as an APM package: add a single line to your project's apm.yml and apm install does the rest — Chrome (Playwright's bundled Chrome-for-Testing) and Node.js resolve through Nix; the MCP server gets wired into every supported harness's runtime config (Claude Code, Codex, OpenCode, …). No devshell to author, no flake to compose. The nixpkgs source is overridable per process or system-wide.

See introductory blog post.

Usage

Add to your project's apm.yml:

dependencies:
  apm:
    - juspay/nix-chrome-devtools-mcp

apm install aggregates the MCP entry from this package's apm.yml into your runtime configs (.mcp.json, .codex/config.toml, opencode.json).

Requirements

Nix — see nixos.asia/en/install. Flakes must be enabled (experimental-features = nix-command flakes).

Overrides

The launcher reads two env vars:

| Var | Default | Effect | |---|---|---| | NIXPKGS_FLAKE | nixpkgs | flake-ref used to resolve playwright-driver.browsers and nodejs. Examples: github:NixOS/nixpkgs/<rev>, path:/abs/path/to/local/nixpkgs. | | CHROME_DEVTOOLS_MCP_VERSION | latest | npm dist-tag or version of chrome-devtools-mcp to install via npx -y. Pin to a specific version (e.g. 0.26.0) when you need reproducibility. |

System-wide overrides also work:

  • nix registry pin nixpkgs github:NixOS/nixpkgs/<rev> (replaces the default nixpkgs registry alias).
  • Declare an overriding mcp: entry for chrome-devtools in the consumer's root apm.yml (root deps win APM's name-first dedupe).

Chrome version compatibility

chrome-devtools-mcp is always pulled at @latest via npx. Each release transitively pins a Puppeteer version that expects a specific Chrome-for-Testing milestone; nixpkgs' playwright-driver.browsers provides a Chrome that may run a few major versions behind. CDP is largely backward-compatible, so the core operations (navigate, evaluate, take_snapshot, network/console inspection, screenshots) work, but Lighthouse-driven tooling (performance_* insights) is the most version-sensitive piece. If a chrome-devtools-mcp release breaks against your nixpkgs Chrome, override NIXPKGS_FLAKE to a newer nixpkgs revision whose Playwright Chrome matches Puppeteer's expected milestone.

License

Apache 2.0 — see LICENSE.

Quick Setup
Installation guide for this server

Installation Command (package not published)

git clone https://github.com/juspay/nix-chrome-devtools-mcp
Manual Installation: Please check the README for detailed setup instructions and any additional dependencies required.

Cursor configuration (mcp.json)

{ "mcpServers": { "juspay-nix-chrome-devtools-mcp": { "command": "git", "args": [ "clone", "https://github.com/juspay/nix-chrome-devtools-mcp" ] } } }