Smithery

browser_storage

Read or write localStorage and sessionStorage. Use for debugging client-side state, auth tokens, feature flags, and cached data.

Remote relievedattention992-smithery/screenshotsmcp

Other tools also called browser_storage? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "key": {
      "type": "string",
      "description": "Storage key (required for get, set, remove)"
    },
    "value": {
      "type": "string",
      "description": "Value to set (required for 'set' action)"
    },
    "action": {
      "enum": [
        "get",
        "getAll",
        "set",
        "remove",
        "clear"
      ],
      "type": "string",
      "description": "Action: get one key, getAll keys, set a key, remove a key, or clear all"
    },
    "sessionId": {
      "type": "string",
      "description": "Session ID from browser_navigate"
    },
    "storageType": {
      "enum": [
        "localStorage",
        "sessionStorage"
      ],
      "type": "string",
      "default": "localStorage",
      "description": "Which storage to access"
    }
  }
}