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

@imocat/n8n-nodes-volcengine-ark

v0.3.4

Published

n8n node for VolcEngine ARK (Doubao) integration

Readme

@imocat/n8n-nodes-volcengine-ark

This is an n8n community node that provides two ways to use VolcEngine ARK (Doubao) in your n8n workflows:

  1. VolcEngine ARK - Regular node for direct API calls
  2. VolcEngine ARK Chat Model - LangChain-compatible chat model for AI Agents

VolcEngine ARK provides powerful large language models (LLM) through the ARK platform.

n8n is a fair-code licensed workflow automation platform.

Installation

Follow the installation guide in the n8n community nodes documentation.

Community Nodes (Recommended)

  1. Go to Settings > Community Nodes
  2. Select Install
  3. Enter @imocat/n8n-nodes-volcengine-ark in Enter npm package name
  4. Agree to the risks and select Install

Manual Installation

To get started install the package in your n8n root directory:

npm install @imocat/n8n-nodes-volcengine-ark

For Docker-based deployments add the following line before the font installation command in your n8n Dockerfile:

RUN cd /usr/local/lib/node_modules/n8n && npm install @imocat/n8n-nodes-volcengine-ark

Credentials

To use this node, you need to create credentials in n8n:

  1. API Key: Get your API key from the VolcEngine ARK console
  2. Base URL: Default is https://ark.cn-beijing.volces.com/api/v3 (usually no need to change)

Nodes

VolcEngine ARK (Regular Node)

Direct API integration for chat completions and model listing.

Operations

Chat

Generate a chat completion with Doubao models.

Parameters:

  • Resource: Chat
  • Operation: Complete
  • Model: Select from predefined models or enter custom model ID
  • Messages: Array of messages with role (system/user/assistant) and content
  • Options (optional):
    • Temperature: Controls randomness (0-2)
    • Top P: Nucleus sampling parameter (0-1)
    • Max Tokens: Maximum tokens to generate
    • Stream: Enable streaming responses
    • Frequency Penalty: Reduce repetition (-2 to 2)
    • Presence Penalty: Encourage new topics (-2 to 2)
    • Stop Sequences: Stop generation at specific sequences
List Models

List all available models in your VolcEngine ARK account.

VolcEngine ARK Chat Model (AI Agent Compatible)

LangChain-compatible chat model node designed for use with n8n AI Agents, AI Tools, and AI Memory nodes.

Features

  • Seamless integration with n8n AI Agents
  • Support for multi-turn conversations
  • Full LangChain compatibility
  • Reasoning model support (DeepSeek R1, Doubao Thinking Pro)

Parameters

  • Model: Choose from all available VolcEngine ARK models
  • Options:
    • Temperature: Controls randomness (0-2, default: 0.7)
    • Maximum Tokens: Max tokens to generate (default: 4096)
    • Top P: Nucleus sampling (0-1)
    • Frequency Penalty: Reduce repetition (-2 to 2)
    • Presence Penalty: Encourage new topics (-2 to 2)
    • Stop Sequences: Up to multiple stop sequences
    • Timeout: Request timeout in milliseconds (default: 60000)
    • Max Retries: Number of retry attempts (default: 2)

Usage Examples

Using the Regular Node

  1. Add the VolcEngine ARK node to your workflow
  2. Connect it to your trigger
  3. Configure credentials
  4. Select Chat resource and Complete operation
  5. Choose your model from the list or enter a custom model ID
  6. Add messages (e.g., system prompt and user question)
  7. Execute the workflow

Using the Chat Model with AI Agent

  1. Add an AI Agent node to your workflow
  2. In the AI Agent settings, select VolcEngine ARK Chat Model as the language model
  3. Configure the model selection and parameters
  4. Connect AI Tools and AI Memory nodes as needed
  5. The Chat Model will automatically handle conversation context and tool calling

Supported Models

  • Doubao Seed 1.6 Series: Flagship models with ultimate speed
  • Doubao 1.5 Series: Pro and Lite versions with 32k/256k context
  • Doubao Thinking Pro: Deep reasoning model
  • DeepSeek Series: V3 and R1 models with distilled variants

Compatibility

  • Tested with n8n version 1.0.0+
  • Compatible with VolcEngine ARK API v3
  • LangChain integration via @langchain/openai
  • Works with n8n AI Agent, AI Tool, and AI Memory nodes

Resources

License

MIT