npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-emailvalidationstool

v0.1.21

Published

n8n nodes for Email Validation via SMTP handshake

Readme

Browser Tool Node

An n8n node that connects to a Browser MCP (Model Context Protocol) server, enabling AI-driven browser automation from within n8n workflows.


Overview

The Browser Tool node acts as an MCP client. It connects to a running Browser MCP server over HTTP or SSE, optionally attaches a Chrome DevTools Protocol (CDP) session (Chrome, Playwright, etc.), and exposes the full MCP surface — tools, resources and prompts — as n8n operations.

It can be used as a standalone node or as a tool inside an AI Agent node (usableAsTool: true).


Prerequisites

| Requirement | Details | |---|---| | Running MCP server | An MCP-compatible browser automation server (e.g. Playwright MCP) | | CDP-enabled browser (optional) | Chrome / Chromium launched with --remote-debugging-port=9222, or a Playwright server | | API Key (optional) | Required only if your MCP server enforces authentication |


Configuration

Connection

| Field | Type | Default | Description | |---|---|---|---| | Base URL | string | http://localhost:8080 | Base URL of the MCP server | | API Key | password | — | Sent as X-API-KEY header; leave blank if not required. Get a key | | CDP Driver URL | string | http://localhost:9222 | Remote debugging endpoint of a running browser. Used to call browser_connect_cdp automatically before the first Call Tool operation | | Connection Type | options | HTTP | HTTP uses Streamable HTTP transport; SSE uses Server-Sent Events transport |

Operation

Select what the node should do each time it runs.


Operations

List Tools

Returns every tool registered on the connected MCP server.

Output: array of tool descriptors (name, description, input schema).


Call Tool

Executes a specific tool on the MCP server.

When a CDP Driver URL is set and this is the first callTool call in the execution, the node automatically calls browser_connect_cdp to attach the browser session before running your tool.

| Parameter | Type | Required | Description | |---|---|---|---| | Tool Name | string | yes* | Name of the MCP tool to invoke (e.g. browser_navigate). Can be omitted if toolName, name, or tool is present inside Tool Arguments | | Tool Arguments | JSON | no | Arguments forwarded to the tool as a JSON object, e.g. { "url": "https://example.com" } |

*If Tool Name is blank, the node looks for the key toolName, name, or tool inside Tool Arguments and uses that value.

Common browser tools (depends on your MCP server):

| Tool | Example Arguments | |---|---| | browser_navigate | { "url": "https://example.com" } | | browser_screenshot | {} | | browser_click | { "selector": "#submit-btn" } | | browser_type | { "selector": "#search", "text": "hello" } | | browser_connect_cdp | { "endpoint": "http://localhost:9222" } |


List Resources

Returns every resource exposed by the MCP server.

Output: array of resource descriptors (uri, name, mime type, etc.).


Read Resource

Reads the content of a specific MCP resource.

| Parameter | Type | Required | Description | |---|---|---|---| | Resource URI | string | yes | The URI of the resource to read (obtained from List Resources) |

Output: array of resource content objects.


List Prompts

Returns every prompt template registered on the MCP server.

Output: array of prompt descriptors (name, description, arguments).


Get Prompt

Fetches a rendered prompt from the MCP server.

| Parameter | Type | Required | Description | |---|---|---|---| | Prompt Name | string | yes | Name of the prompt to retrieve | | Prompt Arguments | JSON | no | Key/value pairs required by the prompt template |

Output: the rendered prompt messages.


Output Schema

Every operation returns items in this shape:

{
  "operation": "callTool",
  "result": { ... },
  "timestamp": "2026-03-12T10:00:00.000Z"
}

On error (when Continue On Fail is enabled):

{
  "error": "Tool not found: browser_navigate",
  "operation": "callTool",
  "timestamp": "2026-03-12T10:00:00.000Z"
}

Connection Caching

Within a single n8n execution the MCP client connection is reused across all items and node invocations (keyed by executionId + connectionType + baseUrl + driverUrl). This avoids redundant handshakes and ensures browser_connect_cdp is only called once per execution.


Example Workflow

[Manual Trigger]
      |
[Browser Tool]  ← Operation: Call Tool
                   Base URL: http://localhost:8080
                   CDP Driver URL: http://localhost:9222
                   Tool Name: browser_navigate
                   Tool Arguments: { "url": "https://example.com" }
      |
[Browser Tool]  ← Operation: Call Tool
                   Tool Name: browser_screenshot
      |
[Write Binary File]

Error Handling

| Scenario | Behaviour | |---|---| | MCP server unreachable | Throws ApplicationError with the connection URL | | Invalid JSON in arguments | Throws NodeOperationError with parse details | | Tool name missing | Throws NodeOperationError prompting where to set the name | | Unknown operation | Throws NodeOperationError | | Continue On Fail enabled | Errors are captured in the output item and execution continues |


References