devtools_storage
Inspect and update browser storage for any tab—localStorage, sessionStorage, or cookies—by listing, reading, writing, or deleting keys.
Instructions
Read or write browser storage for a tab: localStorage, sessionStorage, or cookies. Equivalent to DevTools Application > Storage panel.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | No | Storage key (required for get/set/delete) | |
| tabId | No | Target tab ID (from browser_tabs list). Uses active tab if omitted. | |
| value | No | Value to write (required for set) | |
| action | Yes | list: all keys | get: value for a key | set: write a key | delete: remove a key | |
| agentId | No | Agent identifier for parallel execution. Pass a unique ID (e.g. 'C1', 'J2') — the server automatically routes calls to this agent's dedicated tab (registered via browser_tabs action=new). | |
| storageType | Yes | Which storage to access |