New:Socket for Asana Is Now Available.Learn more
Get Started

n8n-nodes-llmgraph

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

n8n-nodes-llmgraph

n8n community node for LLMGraph: invoke workflows deployed on llmgraph.ai from your n8n workflows

latest
Source
npmnpm
Version
0.1.1
Version published
Maintainers
1
Created
Source

n8n-nodes-llmgraph

This is an n8n community node. It lets you use LLMGraph in your n8n workflows.

LLMGraph is a no-code LLM workflow builder: you design AI workflows visually as a graph, then deploy them to a public REST API. This node invokes those deployed workflows from n8n.

n8n is a fair-code licensed workflow automation platform.

Installation

  • In n8n, go to Settings, then Community Nodes.
  • Select Install.
  • Enter n8n-nodes-llmgraph in the npm package name field.
  • Agree to the risks of using community nodes and select Install.

Community nodes require a self-hosted n8n instance, or availability as a verified community node on n8n Cloud. See the installation guide for details.

Via npm (manual, self-hosted)

From your n8n custom nodes directory (~/.n8n/custom by default):

npm install n8n-nodes-llmgraph

Then restart n8n.

Operations

The LLMGraph node supports one operation:

  • Invoke Workflow: send a JSON payload to a deployed LLMGraph workflow and return its JSON output as the item data.

Parameters:

  • Request Body: a JSON object sent as the request body. Defaults to {}. Your workflow's input nodes read their values from this object.
  • User Input: a convenience text field. When set, it is merged into the request body as the user_input property. Handy for single-input workflows and for use as an AI agent tool.

Credentials

You need an LLMGraph account with a deployed workflow.

  • Sign in at llmgraph.ai and open your workflow's deployment page.
  • Copy the deployment endpoint URL. It looks like https://llmgraph.ai/api/<graph_id>/<environment>.
  • Copy the deployment API key.
  • In n8n, create new LLMGraph API credentials and paste both values.

Note: LLMGraph deployment endpoints only accept POST requests, so the credential test performs a real invocation of your workflow with an empty JSON body ({}). If your workflow requires input, the test may report an HTTP 422 run failure with a message explaining that the credentials were accepted and only the empty test input was rejected; in that case save the credential and run the node with real input. Authentication and reachability problems (401, 403, 404, or a network error) mean the endpoint URL or key needs fixing.

Usage

  • Add the LLMGraph node to your workflow.
  • Select your LLMGraph API credentials.
  • Set the Request Body to the JSON your deployed workflow expects, or just fill in User Input for simple workflows.
  • Run the workflow. The node outputs the JSON returned by your LLMGraph workflow.

The node maps LLMGraph API errors to clear messages: 422 means the workflow run failed, 504 means it timed out, 403 means the deployment is disabled, 402 indicates a billing issue, and 429 means you are rate limited. Enable "Continue On Fail" on the node to receive these as error items instead of stopping the workflow.

The node is marked as usable as a tool, so AI agents in n8n can call your deployed LLMGraph workflows as tools. On self-hosted n8n, you must set the environment variable N8N_COMMUNITY_PACKAGES_ALLOW_TOOL_USAGE=true for community nodes to be available as tools.

Compatibility

Built and tested against n8n 1.x with n8nNodesApiVersion 1. Requires a Node.js version supported by your n8n instance.

Verified community node status

This package follows n8n's verification guidelines: it was scaffolded with the official n8n-node CLI, is written in TypeScript, has no runtime dependencies, does not touch environment variables or the file system, and is MIT licensed. Submission for verified community node status happens through the n8n Creator Portal after the package is published to npm via GitHub Actions with provenance (see .github/workflows/publish.yml).

Resources

Version history

  • 0.1.0: initial release with the Invoke Workflow operation and LLMGraph API credentials.

Keywords

n8n-community-node-package

FAQs

Package last updated on 15 Jul 2026

Related posts