Skip to content

Products

Compliance Officer Service Expert-led compliance, end to end Compliance Portal Share security documents securely Open-source platform Deploy Probo on your own infrastructure

Resources

Probo stories How teams get compliant with Probo Blog Ideas and guidance from the Probo team Guides & tools Practical compliance guides and free tools Love from Customers What customers say about working with Probo Changelog Latest product updates Download Get the Probo Agent

Company

About The people and vision powering Probo Careers Join the team building Probo Brand assets Official logos and visual resources Security Review our security and compliance posture
Overview Understand Probo and its core concepts Product Explore Probo's GRC capabilities Developers Explore GraphQL, CLI, MCP, n8n, and webhooks Deployment Probo Cloud, self-hosting, and configuration

Explore

GitHub Explore our open-source compliance tools

Install the Probo n8n nodes

Install, pin, update, or remove the Probo community node package

View as Markdown

The Probo integration is distributed as the @probo/n8n-nodes-probo verified community package. n8n distributes it directly through the node picker on n8n Cloud and self-hosted instances. It installs both the Probo action node and Probo Trigger.

  • An n8n Cloud or self-hosted instance with verified community nodes enabled.
  • n8n 1.0 or later.
  • The Owner or Admin role in n8n.

All instance members can use the nodes after an Owner or Admin installs them. If Probo does not appear in the node picker, ask the instance owner to enable verified community nodes.

  1. Open a workflow canvas.
  2. Open the node picker by selecting +.
  3. Search for Probo.
  4. Select Probo from More from the community.
  5. Review the supported actions and select Install.
  6. Add Probo or Probo Trigger to the workflow.

This is the recommended installation method for both n8n Cloud and self-hosted n8n. See n8n’s verified community node guide for instance-level controls.

Self-hosted administrators can also install the npm package through Settings → Community Nodes, manually, or through n8n’s community-package environment variables. These options are useful for pinned container images, queue-mode deployments, and infrastructure-managed versions.

To use Settings → Community Nodes, select Install and enter @probo/n8n-nodes-probo.

For a manual installation:

Terminal window
mkdir -p ~/.n8n/nodes
cd ~/.n8n/nodes
npm install @probo/n8n-nodes-probo

Restart every n8n process that loads nodes after installation. In queue mode, the main process and all workers must use the same package version.

For production, pin the package version in your image or deployment configuration. Before updating:

  1. Review the package version currently installed in n8n.
  2. Test important workflows in a non-production n8n instance.
  3. Update every main and worker process together.
  4. Reactivate a trigger workflow if your deployment does not restore its webhook registration automatically.

Use n8n’s community-node management UI for in-app updates. For a manual self-hosted installation:

Terminal window
cd ~/.n8n/nodes
npm install @probo/n8n-nodes-probo@<version>

Deactivate workflows that use Probo Trigger before removal so n8n can delete their Probo webhook subscriptions. Then remove the package from Settings → Community Nodes, or run:

Terminal window
cd ~/.n8n/nodes
npm uninstall @probo/n8n-nodes-probo

Restart n8n and revoke any Probo OAuth token that is no longer used.

Configure a Probo API credential, then test a read-only operation before activating a workflow that changes data.