Description
n8n-nodes-figranium
Official n8n community node for Figranium — trigger tasks, inspect executions, and manage schedules directly from your n8n workflows.
Resources and operations
Execute
| Operation | Description |
|—|—|
| Execute Task | Run a saved task and return its result. Accepts optional runtime variables. |
Task Actions
| Operation | Description |
|—|—|
| List | Return all task IDs, names, and descriptions from the server. |
| Create | Create a new automation task (URL, mode, actions, variables, stealth config, and more). |
| Update | Update fields on an existing task. Only the fields you set are sent (partial update). |
| Delete | Permanently delete a task. |
Execution
| Operation | Description |
|—|—|
| List | Return a summary of all past execution records. |
Schedule
| Operation | Description |
|—|—|
| List | Return all tasks that have a schedule configured. |
| Get Status | Get the schedule config and next run time for a specific task. |
| Set Schedule | Create or update a schedule on a task (frequency-based or cron). |
| Delete Schedule | Disable and remove the schedule from a task. |
| Describe Schedule | Validate and preview a schedule config without saving it. |
| Get Scheduler Status | Return the overall status of the task scheduler. |
Browser
| Operation | Description |
|—|—|
| Open | Launch or reattach a managed browser session. Currently headful-only. |
Inspector
| Operation | Description |
|—|—|
| Highlight | Highlight and inspect elements on an active browser session, with an optional text/selector hint. |
Requirements
- n8n (cloud or self-hosted) with community nodes enabled.
- Figranium server reachable from wherever n8n is running (default
http://localhost:11345). - Valid API key created via Figranium Settings.
Documentation
Full walkthrough of the n8n integration: https://figranium.dev/docs/n8n-integration
Installation
Classic (recommended)
1. In n8n, go to Settings → Community Nodes.
2. Enter n8n-nodes-figranium.
3. Install and restart n8n if prompted.
Manual (from source)
npm install
npm run build
Configuration
Credentials
The node uses the Figranium API credential type:
http://localhost:11345. Trim trailing slashes.x-api-key on every request.Execute › Execute Task
/api/tasks/list. Each option shows the task name and description (if set).variables in the request body. Names are required; values can be empty strings.Task Actions › Create / Update
Scrape / Agent / Headful) are required on Create; all fields are optional on Update — only what you set is sent as a partial patch. – Actions (JSON) — the ordered array of automation step objects (navigate, click, type, wait_selector, if/else/end, etc.). See the n8n integration docs for the full action schema.
– Variables (JSON) — an object of variable definitions, e.g. { "myVar": { "type": "string", "value": "" } }.
– Stealth (JSON) — anti-bot/human-behavior flags, e.g. { "allowTypos": true, "cursorGlide": true }.
Schedule › Set Schedule
Frequency (interval/daily/weekly/monthly) or Cron Expression.0 9 1.Browser › Open
Headful sessions are supported via the VNC stack.Inspector › Highlight
Usage example — Execute a task with variables
POST {baseUrl}/api/tasks/{taskId}/api
x-api-key: {apiKey}{
"variables": {
"url": "https://example.com",
"limit": "10"
}
}
The node returns the JSON response from Figranium as output data for downstream nodes.
Troubleshooting
/api/tasks/list returns data.Get Scheduler Status).Toggling n8n workflows programmatically
If you provision or activate/deactivate n8n workflows from a script or pipeline (not through this node, but the same n8n instance it targets), be aware of a few things that are n8n-core behavior, not specific to Figranium:
import:workflow deactivates the workflow it imports. Don’t assume an imported workflow keeps its prior active state — re-activate it explicitly after import.activate / deactivate, not publish. Hitting a publish endpoint returns a 405.Content-Type: application/json with a {} body, even for calls with no real payload. Omitting it produces a 415 that reads like an auth/permissions problem but isn’t.Diagnosing “it’s active but nothing happens”: the DB record and the running process can disagree, so check both sides instead of trusting one:
1. What the DB / API says (this is what the UI and CLI both show)
curl -s {n8nBaseUrl}/api/v1/workflows/{workflowId}
-H "X-N8N-API-KEY: {apiKey}" | jq '.active'2. What the running process is actually doing — recent executions for this workflow
curl -s "{n8nBaseUrl}/api/v1/executions?workflowId={workflowId}&limit=5"
-H "X-N8N-API-KEY: {apiKey}" | jq '.data[] | {id, startedAt, status}'
If (1) says active: true but (2) shows no executions where you’d expect them (e.g. a trigger has clearly fired but nothing ran), the process hasn’t picked up the DB change. Restarting the n8n process forces it to reload — that’s the reliable fix once you’ve confirmed the split, rather than re-toggling active/inactive and hoping.
Development
npm run build # compile TypeScript + copy icons to dist/
Load the package as a local community node or publish to npm.
License
MIT License — see LICENSE.