thincms_set_tool_data
Writes a JSON value as tool data, supporting tool-global storage or per-user storage with subscriberId to update personalized dashboards or state files.
Instructions
Write a Tool data value. Without subscriberId, writes tool-global (visible to every user of the tool). With subscriberId, writes per-user data — the workhorse for AI agents updating a specific user's personalized dashboard, Kanban board, or state file. value accepts any JSON: object, array, string, number, boolean, or null.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Tool ID or slug | |
| key | Yes | Data key | |
| value | No | JSON value to store | |
| siteId | No | Override the active site for this single call. Pass to target a specific tenant without mutating shared active-site state — the right pattern when running concurrent agent sessions managing different tenants. Must match a siteId from your THINCMS_SITES config (use thincms_list_sites to inspect). When omitted, the call uses the active site set by thincms_switch_site. | |
| subscriberId | No | End-user Subscriber ID to scope the write to. Omit for tool-global. | |
| confirmProductionWrite | No | Acknowledge that this call may write to a configured production site (THINCMS_PRODUCTION_SITE_IDS env var). Required for any POST/PUT/PATCH/DELETE against a production-listed site; ignored otherwise. The error message lists which site triggered the requirement and recommends thincms_snapshot before any production write. |