← browserscale.cloud

INDIVIDUAL MCP TOOL

clear_storage

Delete localStorage.

browserscale.cloudnone authenticationAvailability not checked

LIVE ENDPOINT

https://mcp.browserscale.cloud/mcp

No auth detected

Connect to this endpoint to inspect the live schema for clear_storage and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Potential side effects detected · medium confidence · heuristic, not a guarantee.

  • A tool name or description contains a deletion term.

Parent server

browserscale.cloud

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.browserscale]
url = "https://mcp.browserscale.cloud/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "browserscale": {
      "type": "http",
      "url": "https://mcp.browserscale.cloud/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: browserscale
Remote MCP URL: https://mcp.browserscale.cloud/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "browserscale": {
      "url": "https://mcp.browserscale.cloud/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "browserscale": {
      "type": "http",
      "url": "https://mcp.browserscale.cloud/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "browserscale",
  "transport": "streamable-http",
  "url": "https://mcp.browserscale.cloud/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • clear_cookies — Delete every cookie in the session — start from a clean identity.
  • click — Click an element.
  • drag — Drag an element.
  • evaluate — Run a JavaScript expression in the page's MAIN frame and get its JSON value back.
  • fill — Type text into ONE specific input, strictly bound to it: it clicks to focus then sends real, per-key keyboard events, re-verifying focus each key — the right choice for SPA forms that validate on input or enable a button as you type.
  • get_cookies — Dump every cookie in the session as a JSON array — an identity snapshot.
  • get_storage — Dump localStorage grouped by origin as JSON — the other half of an identity snapshot (pair with get_cookies).
  • insert_text — Commit a whole string at once to the focused element via the IME path — NO per-key events fire (fast, silent).