Is your feature request related to a problem? Please describe.
When I cuse chrome-devtool-mcp to test performance for my website page, I need a function to disable cache. But now there is no such a tool in our mcp.
Describe the solution you'd like
It's very easy to support it because we can use CDP to send protocol:
await page._client.send('Network.setCacheDisabled', { cacheDisabled: true });
Describe alternatives you've considered
Or we can use Incognito
const context = await browser.createIncognitoBrowserContext();
Additional context
No response
Is your feature request related to a problem? Please describe.
When I cuse chrome-devtool-mcp to test performance for my website page, I need a function to disable cache. But now there is no such a tool in our mcp.
Describe the solution you'd like
It's very easy to support it because we can use CDP to send protocol:
Describe alternatives you've considered
Or we can use Incognito
Additional context
No response