KV Store
Key-value store for persisting data across executions. Supports put, get, delete, and list operations. Choose a scope: End User (per-user isolation, default), Workspace (shared), or External ID (custom identifier).
Actions
| Name | Description |
|---|---|
putSet a key-value pair in the store. Overwrites any existing value. | Set a key-value pair in the store. Overwrites any existing value. |
getGet a value by key from the store. | Get a value by key from the store. |
deleteDelete a key-value pair from the store. | Delete a key-value pair from the store. |
add_to_listAppend a value to an array stored at the given key. Creates the array if it does not exist. | Append a value to an array stored at the given key. Creates the array if it does not exist. |
remove_from_listRemove occurrences of a value from an array stored at the given key. | Remove occurrences of a value from an array stored at the given key. |
Quick Start
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?
Use Weavz Hosted Connect for No Auth authentication. Install the SDK, create a connection through the connect portal or API, 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 80-98% context reduction with 3 meta-tools for efficient agent access.
What authentication does KV Store use?
KV Store uses No Auth. Weavz handles token management, refresh, and secure credential storage automatically.
How much does the KV Store integration cost?
The KV Store integration is included on all Weavz plans including the free tier with 1,000 actions per month. No credit card required.
Connect KV Store in 2 minutes
Get 1,000 free actions every month. No credit card required.