KV Store

KV Store

Key-value store for persisting data across executions. Supports put, get, delete, and list operations. Persistence scope is configured on the workspace integration.

5 actions

Actions

Name
put

Set a key-value pair in the store. Overwrites any existing value.

get

Get a value by key from the store.

delete

Delete a key-value pair from the store.

add_to_list

Append a value to an array stored at the given key. Creates the array if it does not exist.

remove_from_list

Remove occurrences of a value from an array stored at the given key.

Quick Start

TypeScript
import { WeavzClient } from '@weavz/sdk'

const weavz = new WeavzClient({ apiKey: 'wvz_...' })

const result = await weavz.actions.execute({
  integrationName: 'kv-store',
  actionName: 'put',
  input: { /* ... */ },
  connectionId: 'conn_id',
  workspaceId: 'ws_id',
})

Related Integrations

Works well with

Frequently Asked Questions

How do I connect KV Store to my app?

KV Store does not require an external account connection. Install the SDK, add the integration to a workspace, then execute actions programmatically.

What actions does KV Store support?

KV Store supports 5 actions including Put, Get, Delete, Add to List, Remove from List.

Can I use KV Store with AI agents?

Yes. Add KV Store to an MCP server in TOOLS mode or CODE mode. CODE mode provides 3 meta-tools with on-demand API discovery for efficient agent access.

What authentication does KV Store use?

KV Store does not require external authentication.

How much does the KV Store integration cost?

The KV Store integration is included on all Weavz plans including the free tier with 20,000 actions per month. No credit card required.

Connect KV Store in minutes

Get 1,000 free actions every month. No credit card required.