Package Information
Available Nodes
Documentation
n8n-nodes-leapter
This is an n8n community node that lets you use Leapter in your n8n workflows.
Leapter is an AI application platform that enables you to build, deploy, and manage AI blueprints. This node dynamically discovers and executes Leapter blueprints via OpenAPI specifications, providing a seamless integration between n8n workflows and Leapter's AI capabilities.
n8n is a fair-code licensed workflow automation platform.
Table of Contents
Installation
Follow the installation guide in the n8n community nodes documentation.
Development Setup
Prerequisites
- Node.js: Version 20.19 - 24.x (n8n does not support Node.js 25+)
- pnpm: Package manager
To check your Node.js version:
node -v
If you need to switch versions using Homebrew:
brew install node@24
brew unlink node
brew link --overwrite node@24
Install Dependencies
pnpm install
Scripts
| Script | Description |
|---|---|
pnpm dev |
Start n8n with the node in development mode (with hot reload) |
pnpm build |
Build the node for production |
pnpm build:watch |
Build and watch for changes |
pnpm lint |
Run ESLint |
pnpm lint:fix |
Fix linting issues |
pnpm release |
Publish a new release |
Running Locally
Install dependencies:
pnpm installStart the development server:
pnpm devOpen n8n in your browser:
http://localhost:5678
The Leapter node will be available in the n8n node picker.
Operations
The Leapter node provides dynamic operations based on your available blueprints:
- Execute Blueprint: Run any Leapter blueprint with input parameters
- Dynamic Operation Discovery: Automatically discovers available operations from your Leapter projects via OpenAPI specifications
How It Works
- Select a Project from your available Leapter projects
- Choose an Operation (blueprint) to execute
- Configure input parameters using either:
- Visual Mode: Map fields visually with type hints
- JSON Mode: Provide raw JSON input for advanced use cases
- Execute and receive results with metadata including run ID and editor link
Credentials
To use this node, you need a Leapter API key.
Prerequisites
- Sign up for a Leapter account at lab.leapter.com
- Create at least one project with published blueprints
Setting Up Credentials
- In Leapter, go to Settings → API Keys
- Click Create API Key
- Copy the generated key (starts with
lpt_) - In n8n, create new credentials for "Leapter API"
- Paste your API key
- (Optional) Change the server URL if using a self-hosted instance
Credential Fields
| Field | Description | Required |
|---|---|---|
| API Key | Your Leapter API key (starts with lpt_) |
Yes |
| Leapter Server | Server URL (default: https://lab.leapter.com) |
No |
Compatibility
- Minimum n8n version: 0.228.0 (required for resourceMapper UI component)
- Recommended: n8n 1.0.0 or later
- Tested with: n8n 2.x
Usage
Visual Mode (Recommended)
Visual mode provides a guided experience with field-by-field mapping:
- Select your project and operation
- The node automatically loads available input fields
- Map values from previous nodes or enter static values
- Each field shows its type and whether it's required
JSON Mode
For advanced users or complex payloads:
- Select your project and operation
- Switch Input Mode to "JSON"
- Enter your parameters as a JSON object
- Refer to the OpenAPI spec for field definitions
Example Workflow
Trigger → Leapter (Execute Blueprint) → Process Results
Output
The node returns:
- Response data: The blueprint execution results
- Metadata:
runId: Unique identifier for the executioneditorLink: Direct link to view the run in Leapter
Error Handling
- 401/403 errors: Check your API key and project access
- Timeout errors: Increase the timeout in node options (default: 30 seconds)
Resources
Version history
0.1.0
- Initial release
- Dynamic project and blueprint discovery
- Visual and JSON input modes
- Resource mapper for visual field mapping
- Execution metadata with run ID and editor links