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-straico-official

v5.0.4

Published

Official Straico node for n8n

Downloads

195

Readme

Straico Banner

n8n-nodes-straico-official

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

Straico is an AI-powered platform that provides advanced prompt completion, image generation, agent management, and Retrieval-Augmented Generation (RAG) capabilities via a RESTful API.

n8n is a fair-code licensed workflow automation platform.


Installation

Cloud Installation

Note: Limited to n8n instance owners

Only the n8n instance owner can install and manage verified community nodes. The instance owner is the person who sets up and manages user management. All members of an n8n instance can use already installed community nodes in their workflows.

Admin accounts can also uninstall any community node, verified or unverified. This helps them remove problematic nodes that may affect the instance's health and functionality.

Install a Community Node

To install this verified community node:

  1. Go to the Canvas and open the nodes panel (either by selecting '+' or pressing Tab)
  2. Search for "Straico". You will see it in the "More from the community" section at the bottom of the nodes panel
  3. Select the node to view detailed information about supported actions
  4. Click "Install". This will install the node for your instance and enable all members to use it

Enable Installation of Verified Community Nodes

Some users may not want to show verified community nodes in the nodes panel of their instances. On n8n cloud, instance owners can toggle this in the Cloud Admin Panel.

Uninstall a Community Node

To uninstall the community node:

  1. Go to Settings > Community nodes
  2. On the node you want to uninstall, select Options (three dots menu)
  3. Select "Uninstall package"
  4. Confirm uninstallation in the modal

Self-Hosted Installation

For self-hosted n8n instances:

  1. Install the community node package:

    npm install n8n-nodes-straico-official
  2. Restart your n8n instance to load the new node

  3. In n8n, go to Settings/Community Nodes and enable n8n-nodes-straico-official if it isn't already


Operations

The Straico node supports the following resources and operations:

  • User
    • Get Info: Retrieve account details for the authenticated user.
  • Models
    • Get All: List all available chat and image models.
  • Prompt
    • Completion: Generate text completions using either specified models or the smart LLM selector.
  • Image
    • Generate Image: Create images with customizable parameters (model, size, variations, etc.).
  • Agent
    • Create, Get Details, List, Add RAG, Update, Delete, Prompt Completion.
  • File
    • Upload: Upload binary files for RAG or prompt operations.
  • RAG
    • Create, List, Get, Update, Delete, Prompt Completion.

Credentials

To authenticate requests, you need a Straico API Key:

  1. Sign up or log in at Straico and copy your API key from the dashboard.
  2. In n8n, go to Credentials/New Credential/Straico API.
  3. Paste your API key and save.

All node operations will automatically use this credential.


Compatibility

  • Minimum n8n version: 1.0.0
  • Tested with: n8n 1.x and Straico API v1
  • Known issues: None at this time. If you encounter any, please open an issue in the GitHub repo.

Usage

  1. Add Straico Official node to your workflow.
  2. Select Resource and Operation.
  3. Configure Parameters according to the selected operation.
  4. Connect to other nodes as needed.

Example Workflow

Below is a simple example to generate a text completion and then an image:

[
  {
    "nodes": [
      {
        "parameters": {
          "resource": "prompt",
          "operation": "completion",
          "models": ["gpt-4"],
          "message": "Write a short poem about autumn.",
          "additionalFields": {
            "temperature": 0.8,
            "max_tokens": 100
          }
        },
        "name": "Straico Prompt",
        "type": "n8n-nodes-straico-official.StraicoOfficial",
        "typeVersion": 1,
        "position": [250, 300]
      },
      {
        "parameters": {
          "resource": "image",
          "operation": "generate",
          "model": "openai/dall-e-3",
          "description": "A serene autumn forest with falling leaves",
          "size": "landscape",
          "variations": 1,
          "enhance": true,
          "customEnhancer": "Make it more vibrant and warm"
        },
        "name": "Straico Image",
        "type": "n8n-nodes-straico-official.StraicoOfficial",
        "typeVersion": 1,
        "position": [450, 300]
      }
    ],
    "connections": {
      "Straico Prompt": {
        "main": [
          [
            {
              "node": "Straico Image",
              "type": "main",
              "index": 0
            }
          ]
        ]
      }
    }
  }
]

Resources


Version History

  • 2.0.0 (2025-06-25)
    • Initial public release
    • Supports User, Models, Prompt, Image, Agent, File, and RAG operations
  • 2.1.0 (pending)
    • Planned: Add webhook support and batch RAG uploads