Skip to main content
The Upstash Vector node adds Upstash Vector operations to your workflows. Add it on the canvas or ask the AI builder for it by name, then pick an operation and fill in its fields.
You can wire the Upstash Vector node into an AI agent as a tool provider: the agent calls the operations you allow. See Agent tools.

Credentials

Connect Upstash Vector under Credentials in the node settings. See Connecting credentials for the general flow. Enter the values manually when creating the credential. Get your credentials here.

Operations

Index

OperationIDDescription
Database InfoinfoGet database stats (vector count, dimension, similarity function).
Reset NamespaceresetDelete all vectors from a namespace (or the entire index if no namespace given).

Text

OperationIDDescription
Query by Textquery_textSearch by text, Upstash embeds the text server-side (requires an embedding-enabled database).
Upload & Index Documentupload_and_indexUpload a document, chunk it, and index it with server-side embedding.
Upsert Textupsert_textInsert text records, Upstash embeds them server-side (requires an embedding-enabled database).

Vectors

OperationIDDescription
Delete VectorsdeleteDelete vectors by ID.
Fetch VectorsfetchFetch vectors by ID.
List Vectors (Range)rangeScroll / paginate through all vectors in a namespace using a cursor.
Query / SearchqueryFind the most similar vectors to a query vector.
Update Vector MetadataupdateUpdate the metadata and/or data field of an existing vector without re-supplying the embedding.
Upsert VectorsupsertInsert or overwrite vectors.