npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-neura-ianustec

v0.7.1

Published

n8n Community Node for NEURA | IANUSTEC AI - LangChain compatible Chat Model and Knowledge RAG Tool

Downloads

82

Readme

n8n-nodes-neura-ianustec

NEURA | IANUSTEC AI n8n Community Node Version

A powerful n8n Community Node for integrating with NEURA | IANUSTEC AI services using OpenAI-compatible APIs. This node supports Chat Completions and Embeddings with advanced features like tool/function calling, retry logic, and binary output.

🚀 Features

  • OpenAI-Compatible API: Works with OpenAI API, LiteLLM, vLLM, and other compatible endpoints
  • Chat Completions: Generate AI responses with system/user messages, temperature control, and tool calling
  • Embeddings: Create vector embeddings for text inputs (strings or arrays)
  • Tool Integration: Usable as a Tool in n8n AI Agents with usableAsTool: true
  • Advanced Error Handling: Retry logic with exponential backoff for rate limits and timeouts
  • Binary Output: Save raw API responses as JSON files
  • Batch Processing: Process multiple items efficiently with proper error isolation
  • Configurable Endpoints: Support for custom base URLs and authentication

📦 Installation

Option 1: Via n8n Community Nodes UI

  1. Go to SettingsCommunity Nodes in your n8n instance
  2. Click Install a community node
  3. Enter: n8n-nodes-neura-ianustec
  4. Click Install

Option 2: Kubernetes Deployment (Recommended for Production)

For automatic installation in Kubernetes environments with pre-configured NEURA credentials:

# Quick deployment in 'lair' namespace (with NEURA internal service config)
cd k8s/
./deploy.sh

# Deploy with secure Secret-based credentials
USE_SECRET=true ./deploy.sh

# Monitor installation
kubectl logs -f job/n8n-neura-ianustec-node-installer -n lair

Pre-configured NEURA Settings:

  • Base URL: http://llm-neura.neura-llm.svc.cluster.local/v1
  • API Key: Automatically configured for internal NEURA services
  • Credentials: Created as "NEURA Internal API" in n8n

See k8s/README.md for detailed Kubernetes deployment instructions.

Option 3: Manual Installation

# Navigate to your n8n installation
cd ~/.n8n/nodes

# Install the package
npm install n8n-nodes-neura-ianustec

# Restart n8n

Option 4: Development Installation

# Clone the repository
git clone https://github.com/ianustec/n8n-nodes-neura-ianustec.git
cd n8n-nodes-neura-ianustec

# Install dependencies
pnpm install

# Build the project
pnpm build

# Link for development
npm link

🔧 Configuration

1. Create Credentials

Before using the node, create NEURA | IANUSTEC AI API credentials:

  1. Go to Credentials in n8n
  2. Click Create New
  3. Search for "NEURA | IANUSTEC AI API"
  4. Fill in the required fields:

| Field | Description | Default | Required | |-------|-------------|---------|----------| | Base URL | API endpoint URL | https://api.openai.com/v1 | ✅ | | API Key | Your authentication key | - | ✅ | | Organization ID | OpenAI organization (optional) | - | ❌ | | Request Timeout | Timeout in milliseconds | 60000 | ❌ | | Reject Unauthorized | Verify SSL certificates | true | ❌ |

2. Supported Endpoints

The node works with any OpenAI-compatible API:

  • OpenAI: https://api.openai.com/v1
  • LiteLLM: http://your-litellm-server:4000
  • vLLM: http://your-vllm-server:8000/v1
  • Custom Endpoints: Any API following OpenAI schema

📚 Usage Examples

Chat Completions

Basic Chat

{
  "resource": "chat",
  "operation": "create",
  "model": "gpt-4o-mini",
  "systemMessage": "You are a helpful assistant specialized in data analysis.",
  "userMessage": "Explain the benefits of using n8n for automation.",
  "temperature": 0.7
}

With Tool Calling

{
  "resource": "chat",
  "operation": "create",
  "model": "gpt-4o-mini",
  "userMessage": "What's the weather like in Paris?",
  "toolsJson": {
    "tools": [
      {
        "type": "function",
        "function": {
          "name": "get_weather",
          "description": "Get current weather for a city",
          "parameters": {
            "type": "object",
            "properties": {
              "city": {"type": "string", "description": "City name"}
            },
            "required": ["city"]
          }
        }
      }
    ],
    "tool_choice": "auto"
  }
}

Embeddings

Single Text

{
  "resource": "embeddings",
  "operation": "create",
  "embModel": "text-embedding-ada-002",
  "embInput": "This is a sample text for embedding generation."
}

Multiple Texts

{
  "resource": "embeddings",
  "operation": "create",
  "embModel": "text-embedding-ada-002",
  "embInput": "[\"First text\", \"Second text\", \"Third text\"]"
}

Advanced Options

Store Raw Response + Binary Output

{
  "advancedOptions": {
    "storeRaw": true,
    "binaryFile": "api_response.json"
  }
}

🔄 Response Format

Chat Completions Response

{
  "content": "Generated response text",
  "finish_reason": "stop",
  "model": "gpt-4o-mini",
  "created": 1699123456,
  "usage": {
    "prompt_tokens": 25,
    "completion_tokens": 50,
    "total_tokens": 75
  },
  "message": {
    "role": "assistant",
    "content": "Generated response text"
  }
}

Embeddings Response

{
  "model": "text-embedding-ada-002",
  "embeddings": [
    {
      "object": "embedding",
      "embedding": [0.1, 0.2, -0.3, ...],
      "index": 0
    }
  ],
  "usage": {
    "prompt_tokens": 10,
    "total_tokens": 10
  }
}

🛠️ Error Handling

The node includes comprehensive error handling:

Automatic Retry

  • Rate Limits (429): Exponential backoff (2s → 4s → 6s)
  • Timeouts (408): Automatic retry with backoff
  • Server Errors (5xx): Retry on temporary failures
  • Max Retries: 2 attempts with intelligent backoff

Continue on Fail

When Continue on Fail is enabled:

{
  "error": "Rate limit exceeded. Please try again later.",
  "itemIndex": 0
}

Common Error Types

  • Authentication: Invalid API key or missing credentials
  • Rate Limiting: Too many requests, automatic retry engaged
  • Network: Connection issues, DNS resolution failures
  • Validation: Invalid parameters or malformed requests

🤖 AI Agent Integration

This node is marked as usableAsTool: true, making it available in n8n AI Agents:

  1. Create an AI Agent workflow
  2. In the Agent configuration, the NEURA | IANUSTEC AI node will appear in available tools
  3. The Agent can automatically call this node for AI completions

🔧 Development

Building

pnpm install
pnpm build

Linting

pnpm lint
pnpm lintfix

Testing

# Build and test locally
pnpm build
# Import the built node into your n8n instance for testing

📋 Requirements

  • Node.js: >= 18.0.0
  • n8n: >= 1.0.0
  • Package Manager: pnpm (recommended)

🔍 Troubleshooting

Connection Issues

  1. Verify Base URL: Ensure the endpoint is accessible
  2. Check API Key: Validate authentication credentials
  3. Network Access: Confirm n8n can reach the API endpoint
  4. SSL Issues: Disable rejectUnauthorized for self-signed certificates

Performance Optimization

  1. Batch Size: Process items in reasonable batches
  2. Timeout Settings: Adjust timeout for your network conditions
  3. Rate Limiting: Monitor API usage and implement delays if needed

Debug Mode

Enable debug logging in n8n to see detailed request/response information:

N8N_LOG_LEVEL=debug n8n start

📄 License

MIT License - see LICENSE file for details.

🤝 Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Add tests if applicable
  5. Submit a pull request

📞 Support

🏷️ Version History

  • v0.1.0: Initial release with Chat Completions and Embeddings support

Made with ❤️ by IANUSTEC