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-supabase-namespace

v0.1.3

Published

Supabase Vector Store Extended node for n8n with schema and namespace support

Downloads

18

Readme

n8n-nodes-supabase-namespace

This is an n8n community node that allows you to work with Supabase Vector Store with extended support for custom schemas and namespaces.

Supabase Vector Store is a vector database that allows you to store and search document embeddings efficiently, ideal for AI applications and semantic search.

n8n is a workflow automation platform with fair-code license.

Installation
Operations
Credentials
Compatibility
Usage
Resources
Version History

Installation

Follow the installation guide in the n8n community nodes documentation.

Operations

This node supports the following operations:

  • Load: Load an existing vector store from Supabase
  • Insert: Insert new documents into the vector store
  • Retrieve: Retrieve similar documents based on queries
  • Update: Update existing documents in the vector store
  • Retrieve as Tool: Use retrieval as a tool in LangChain flows

Main Features

🗄️ Custom Schema Support

  • Use database schemas different from the default "public" schema
  • Flexible configuration for multi-tenant environments

🏷️ Namespace System

  • Logical partitioning of documents
  • Efficient filtering by namespace
  • Option to clear namespaces before inserting new data

🔍 Custom Queries

  • Configuration of custom query names
  • Support for advanced metadata filters
  • Native integration with LangChain

Credentials

To use this node, you need to configure Supabase credentials:

Prerequisites

  1. An account on Supabase
  2. A configured Supabase project
  3. A PostgreSQL database with the pgvector extension enabled

Credential Configuration

  1. Go to your Supabase project
  2. Navigate to Settings > API
  3. Copy your Project URL (host)
  4. Copy your service_role key (not the anon key)
  5. In n8n, configure the credentials with:
    • Host: Your Project URL
    • Service Role: Your service_role key

Required Table Structure

Your table must have the following minimum structure:

CREATE TABLE your_table_name (
  id BIGSERIAL PRIMARY KEY,
  content TEXT,
  metadata JSONB,
  embedding vector(1536), -- or the dimension of your embeddings
  namespace TEXT -- column for the namespace system
);

Compatibility

  • Minimum n8n version: 1.0.0
  • Minimum Node.js version: 20.15
  • Tested versions: n8n 1.0.0+

Usage

Basic Configuration

  1. Table Name: Select or write the name of your table
  2. Use Custom Schema: Activate if you want to use a schema different from "public"
  3. Schema: Specify the schema name (e.g., "ai_docs", "user_data")
  4. Namespace: Define a namespace to organize your documents

Common Use Cases

📚 Client Document Management

{
  "tableName": "documents",
  "schema": "client_data",
  "namespace": "client_123",
  "options": {
    "clearNamespace": true
  }
}

🔍 Semantic Search

{
  "tableName": "knowledge_base",
  "namespace": "product_docs",
  "options": {
    "queryName": "search_products",
    "metadataFilter": {
      "category": "electronics"
    }
  }
}

🔄 Data Update

{
  "tableName": "user_preferences",
  "schema": "user_profiles",
  "namespace": "user_456"
}

LangChain Integration

This node integrates perfectly with LangChain flows in n8n, enabling:

  • Complex reasoning chains
  • Conversational agents
  • Recommendation systems
  • Document analysis

Resources

Version History

v0.1.0 (Current)

  • ✅ Basic support for Supabase Vector Store
  • ✅ Namespace system implemented
  • ✅ Support for custom schemas
  • ✅ Complete CRUD operations
  • ✅ LangChain integration
  • ✅ Advanced metadata filters

Contributing

Contributions are welcome! Please:

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/AmazingFeature)
  3. Commit your changes (git commit -m 'Add some AmazingFeature')
  4. Push to the branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

License

This project is licensed under the MIT License - see the LICENSE.md file for details.

Author

Néstor Cano - [email protected]


⭐ If this node is useful to you, consider giving the repository a star!