n8n-nodes-browser-smart-automation
v0.1.30
Published
n8n nodes for Smart Browser Automation via MCP
Downloads
2,585
Maintainers
Keywords
Readme
n8n Nodes — Browser Smart Automation ⚡
n8n-nodes-browser-smart-automation — n8n nodes for Smart Browser Automation via MCP.
🚀 Quick Start
Prerequisites:
- Node.js (>= 18)
- npm
Install dependencies:
npm installBuild the nodes:
npm run buildRun tests:
npm testLint the code:
npm run lintFor development (watch TypeScript):
npm run dev📁 Project Structure
Top-level:
nodes/— TypeScript source for each n8n node groupMcpClientEX/— client nodeMcpClientToolEX/— tool nodeMcpTriggerEX/— trigger nodeshared/— shared utilities, types and helpers
dist/— built artifacts (included infilesfor publishing)package.json— scripts and metadatatsconfig.json,tsup.config.ts,jest.config.js,gulpfile.js
🧩 Included Nodes
McpClientEX— core MCP client integrationMcpClientToolEX— helper tool utilities for MCPMcpTriggerEX— trigger node for MCP events
After building, the compiled nodes are available under dist/ and referenced in package.json for n8n consumption.
⚙️ Usage
Install and build the project, then copy the dist folder into your n8n custom nodes directory, or publish the package to npm and install it into your n8n instance. Restart n8n after adding new nodes.
If you want to run a single node's tests:
npx jest nodes/McpClientEX --runInBand🛠 Development Notes
- Building:
npm run build(usestsup). - Tests:
npm test(usesjest). - Linting:
npm run lint(eslint overnodes/).
Tips:
- Keep shared code in
nodes/shared/and add tests in__test__folders next to the code. - Use
tsc --watch(vianpm run dev) for fast iteration on types.
🤝 Contributing
Contributions are welcome. Please:
- Create an issue describing the change or feature.
- Open a branch with a descriptive name.
- Add tests for new behavior and ensure all tests pass.
- Create a pull request and reference the issue.
📜 License
This project is licensed under the MIT License — see package.json for details.
If you want, I can add CI instructions, badges, or a contributing checklist next. 💡
