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-askarc

v0.2.0

Published

n8n community node for the AskArc AI API

Readme

n8n-nodes-askarc

This is an n8n community node that lets you use the AskArc AI API in your workflows.

AskArc provides access to multiple AI models (Google Gemini, OpenAI, and more) through a single API with intelligent model routing.

n8n is a fair-code licensed workflow automation platform.

Installation

Follow the installation guide in the n8n community nodes documentation.

  1. Open Settings > Community Nodes in your n8n instance
  2. Enter n8n-nodes-askarc
  3. Click Install

Prerequisites

You need an AskArc API key to use this node:

  1. Sign up at askarc.app
  2. Go to the AskArc Portal and generate an API key from the header (starts with fxk_)
  3. API usage is billed through your AskArc API credits
  4. You can also add your own custom models through the portal

Credentials

| Field | Description | |----------|----------------------------------------------------| | API Key | Your fxk_ API key | | Base URL | API endpoint (default: https://api.askarc.app) |

When you add credentials, n8n will test them automatically by calling the List Models endpoint.

Operations

Chat Completion

Send messages to an AI model and receive a response. Uses the OpenAI-compatible /api/v1/chat/completions endpoint.

Fields:

| Field | Required | Default | Description | |----------|----------|----------|----------------------------------------------------------| | Model | No | auto | Model ID. auto picks the best model for the task. | | Messages | Yes | — | JSON array of {role, content} message objects. |

Options:

| Option | Default | Description | |-------------|---------|----------------------------------------------------| | Temperature | 0.7 | Sampling temperature (0 = deterministic, 2 = max) | | Max Tokens | 4096 | Maximum tokens to generate | | Top P | 1 | Nucleus sampling threshold |

Example messages input:

[
  { "role": "system", "content": "You are a helpful assistant." },
  { "role": "user", "content": "Summarise this text: {{$json.text}}" }
]

Response: Standard OpenAI-format object with id, model, choices, and usage.

List Models

Returns all available AI models. Each model is emitted as a separate n8n item with fields: id, name, provider, pricing, contextWindow, and supportsImages.

AskArc Chat Model (AI Agent sub-node)

This package also includes an AskArc Chat Model node that plugs directly into n8n's AI Agent, Chain, and Tool nodes as a language model provider.

  1. Add an AI Agent node to your workflow
  2. Click the Model connector on the AI Agent
  3. Select AskArc Chat Model
  4. Choose your model (or leave as auto) and configure options

This makes AskArc a drop-in replacement for OpenAI or Anthropic in any AI Agent workflow — you get memory, tools, and output parsing for free.

Standalone Node

The standalone AskArc node has usableAsTool: true, so it can also be used as a tool inside AI Agent nodes. The Chat Completion operation works as a tool that AI agents can call to get responses from AskArc models.

Resources

License

MIT