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

@quercle/n8n-nodes-quercle

v1.0.0

Published

n8n nodes for Quercle AI-powered web search and fetch API

Readme

@quercle/n8n

AI-powered web search, fetch, and extraction node for n8n.

Install

  1. Go to Settings > Community Nodes in your n8n instance
  2. Enter @quercle/n8n-nodes-quercle
  3. Agree to the risks and install

Alternatively, install manually:

cd ~/.n8n/nodes
npm install @quercle/n8n-nodes-quercle

Restart n8n after manual installation.

Setup

Credentials

  1. Get an API key from quercle.dev (starts with qk_)
  2. In n8n, go to Credentials > New Credential
  3. Search for Quercle API
  4. Paste your API key and save

Environment Variable

For self-hosted n8n, you can set the API key as an environment variable instead:

export QUERCLE_API_KEY=qk_your_api_key_here

If both a credential and the environment variable are configured, the credential takes precedence.

Operations

Search

AI-synthesized web search. Returns a natural-language answer with source citations.

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | Query | string | Yes | The search query | | Domain Filter | options | No | None, Allowed Domains, or Blocked Domains | | Domains | string | No | Comma-separated list of domains (shown when a filter is selected) |

Fetch

Fetch a URL and analyze its content with an AI prompt. Returns a processed result based on your instructions.

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | URL | string | Yes | The URL to fetch | | Prompt | string | Yes | Instructions for how to process the page content |

Raw Search

Raw web search results without AI synthesis. Returns search results directly in your chosen format.

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | Query | string | Yes | The search query | | Format | options | No | Markdown (default) or JSON | | Use Safeguard | boolean | No | Enable content safety filtering (default: off) |

Raw Fetch

Fetch raw page content from a URL without AI processing.

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | URL | string | Yes | The URL to fetch | | Format | options | No | Markdown (default) or HTML | | Use Safeguard | boolean | No | Enable content safety filtering (default: off) |

Extract

Extract relevant content from a URL based on a query. Returns only the parts of the page that match your query.

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | URL | string | Yes | The URL to extract from | | Query | string | Yes | What content to extract from the page | | Format | options | No | Markdown (default) or JSON | | Use Safeguard | boolean | No | Enable content safety filtering (default: off) |

Usage

All operations return a result field. Operations with the safeguard option also return an unsafe field indicating whether the content was flagged.

Using Search in a workflow

  1. Add a Quercle node
  2. Set Operation to Search
  3. Enter a query, optionally restrict to specific domains
  4. The output result contains the AI-generated answer with citations
Operation: Search
Query: {{ $json.searchTerm }}
Domain Filter: Allowed Domains
Domains: github.com, stackoverflow.com

Using Fetch in a workflow

  1. Add a Quercle node
  2. Set Operation to Fetch
  3. Provide a URL and a prompt describing what to extract or summarize
Operation: Fetch
URL: {{ $json.url }}
Prompt: Extract the product name, price, and availability. Return as JSON.

Using Raw Search for structured data

Choose Raw Search with JSON format when you need machine-readable search results for downstream processing.

Operation: Raw Search
Query: {{ $json.topic }}
Format: JSON

Using Raw Fetch for full page content

Choose Raw Fetch when you need the complete page content (e.g., to feed into another AI node).

Operation: Raw Fetch
URL: {{ $json.url }}
Format: Markdown

Using Extract for targeted content

Choose Extract when you only need specific information from a page.

Operation: Extract
URL: https://example.com/pricing
Query: pricing tiers and feature comparison
Format: JSON

Using as an AI Agent tool

The Quercle node has usableAsTool enabled, so you can attach it directly to an n8n AI Agent node. The agent can then call Search, Fetch, or any other operation as part of its reasoning loop.

Troubleshooting

| Error | Cause | Fix | |-------|-------|-----| | No API key provided | Neither credential nor env var is set | Add a Quercle API credential or set QUERCLE_API_KEY | | 401 Unauthorized | Invalid API key | Verify your key at quercle.dev | | 402 Payment Required | Insufficient credits | Add credits at quercle.dev | | 403 Forbidden | Inactive account | Contact [email protected] | | 504 Gateway Timeout | Target page is slow to respond | Retry, or try a different URL |

Enable Continue on Fail in the node settings to prevent a single failed item from stopping the entire workflow. Failed items return { "error": "error message" } instead of throwing.

License

MIT