@kuramalab/mysupportdetails-mcp
OfficialProvides browser automation capabilities for Firefox, enabling QA testing, cross-browser regression, and profile management through Playwright-based tools.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@@kuramalab/mysupportdetails-mcpSwitch to Firefox profile 'premium' and verify the dashboard loads correctly."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@kuramalab-io/mysupportdetails-mcp
MCP server for QA and test automation ... an AI agent that drives real browsers (Chromium / Firefox / WebKit) and multiple persistent profiles, with runtime switching between profiles and browsers without restarting.
Built for QA teams that want to automate cross-browser tests, cross-account flows, visual regression, localization checks, and privacy/fingerprint audits. Works with Claude Code, Cursor, Cline, and any MCP-standard client.
Designed with MySupportDetails.com as a natural showcase to verify what the browser/profile sees in every combination.
QA / Testing use cases (primary)
Cross-browser regression testing: same flow in Chromium, Firefox, and WebKit ... automatic DOM/screenshot comparison
Multi-account testing:
free-userprofile,premium-userprofile,adminprofile ... the agent verifies that each role sees what it shouldLocalization QA: one profile per language/country (cookie
msd_lang, timezone, geo), the agent checks translated titles, labels, and pricesOnboarding and first-time flows: clean profile on every run ... reliable "what a new user sees" repro
Privacy/fingerprint audit: profile with a privacy extension vs a clean profile ... the agent measures the difference
Cookie banner / consent flow: pre-consent profile vs post-consent profile ... verify trackers do not fire before opt-in
Manual A/B testing: profiles with different feature flags ... the agent compares two UX variants in a single prompt
Related MCP server: ChromeCP
Adjacent use cases
Security research (headers, CSP, response leakage)
RPA (recurring form filling, order status checks)
Ethical content scraping against your own domain
Built by KuramaLab. MIT license. Cross-platform: macOS, Linux, Windows.
Source: github.com/KuramaLab/mysupportdetails-mcp ... npm: @kuramalab-io/mysupportdetails-mcp.
Default behavior: browser is VISIBLE
mysupportdetails-mcp always opens the browser in headed mode (visible window). This is not an option to enable, it is the default and it stays that way.
Reason: when an AI agent browses on your behalf, you need to see in real time what it is doing. Zero silent execution. If something goes wrong (login on the wrong site, unexpected click, malicious popup) you notice immediately and can kill it.
If you need headless (CI, batch, headless servers) you must opt in explicitly in one of the following ways:
Global env var:
MSD_HEADLESS=1before the command (applies to all calls of the same server).Per-call parameter:
browser_open({..., headed: false})in a single tool call.
Precedence: per-call parameter overrides env var. If neither is set the browser is headed. Always.
This choice is documented in both SECURITY.md (headed is also a security feature) and ARCHITECTURE.md (it is not build-time configurable).
Compatible MCP clients
mysupportdetails-mcp implements the standard Model Context Protocol with stdio JSON-RPC transport. It works with any MCP-compatible client with no changes:
Client | Config file | Notes |
Claude Code (CLI) | auto via | Official command below |
Claude Desktop |
| Same |
Cursor |
| |
Cline (VSCode) |
| |
Continue.dev |
| |
Zed editor |
| MCP support 2026+ |
Cody (Sourcegraph) | Cody MCP settings | |
Hermes / OpenClaw / LLMs with MCP wrapper | vendor-specific | As long as they speak MCP stdio |
n8n / Zapier with MCP connector | node subprocess | Runs mysupportdetails-mcp as a CLI |
No vendor lock-in: zero cloud API keys, zero binding to a specific LLM model. If the client speaks MCP, it works.
Why it exists
The official @playwright/mcp accepts browser and profile as static flags at server startup. If you want to switch browser or profile on the fly you must kill the server and restart it. mysupportdetails-mcp solves this:
Runtime switching: change browser or profile between tool calls, zero restart
Named profiles with metadata (name, last used, size, target browser)
Side-by-side comparison across profiles in the same prompt
CRUD tools for profiles callable by the agent
Installation
With Claude Code:
claude mcp add -s user playwright -- npx -y @kuramalab-io/mysupportdetails-mcp@latestWith Cursor / Cline: add to your mcp_settings.json:
{
"mcpServers": {
"playwright": {
"command": "npx",
"args": ["-y", "@kuramalab-io/mysupportdetails-mcp@latest"]
}
}
}The first run downloads the Playwright browsers (~300 MB, one time only).
30-second quickstart
In your Claude Code / Cursor session:
Open Chromium with profile "test-user-1", go to
https://www.mysupportdetails.com/, wait 3 seconds, and
return JSON with browser, OS, IP, ISP, and screen resolution.
Then do the same with Firefox using profile "test-user-2"
and compare the two responses.The agent calls, in order:
browser_open({browser: "chromium", profile: "test-user-1"})browser_navigate({url: "https://www.mysupportdetails.com/"})browser_snapshot()browser_close()browser_open({browser: "firefox", profile: "test-user-2"})(repeats)
And returns the compared analysis.
System requirements
Requirement | Version |
Node.js | 18.x, 20.x, 22.x |
Operating system | macOS 11+ / Linux (glibc 2.31+) / Windows 10+ |
RAM | 2 GB free (Playwright + browser) |
Disk | 500 MB (Playwright browsers + profiles) |
Network | required on first install (browser download) |
Playwright installs its own versions of Chromium/Firefox/WebKit into the Node cache (~/.cache/ms-playwright). It does not touch browsers installed system-wide.
Profile paths per OS
Profiles live in ~/.msd/profiles/{browser}/{profile-name}/:
macOS:
/Users/youruser/.mysupportdetails-mcp/profiles/chromium/test-user-1/Linux:
/home/youruser/.mysupportdetails-mcp/profiles/firefox/personal/Windows:
C:\Users\youruser\.msd\profiles\webkit\work\
The path is resolved via Node's os.homedir() ... works identically everywhere.
A ~/.msd/profiles.json file maintains the registry with metadata (name, browser, created, last_used, size_mb, notes).
Profile security
Profiles contain cookies, localStorage, IndexedDB, and cache ... including active login tokens. They are stored unencrypted on disk (same behavior as the system Chrome profile).
Do not run mysupportdetails-mcp on shared machines without full-disk encryption (FileVault on macOS, BitLocker on Windows, LUKS on Linux). See SECURITY.md for details.
Exposed tools (v0.1.0)
See TOOLS.md for the full schema.
browser_open... open browser + profilebrowser_close... close active contextbrowser_navigate... GET URLbrowser_snapshot... DOM accessibility tree (agent-friendly)browser_click... click on element refbrowser_type... type textbrowser_evaluate... run JS in the pagebrowser_screenshot... save PNGprofile_list... list profilesprofile_create... new empty profileprofile_delete... remove profileprofile_current... info on the active profile
Examples
See the examples/ folder:
multi-account-test.md... cross-account test (2 different logins, same site)cross-browser-audit.md... open the same site in Chromium/Firefox/WebKit, compare renderingfingerprint-diff.md... open mysupportdetails.com with profiles with/without a privacy extension, compare fingerprints
Comparison with @playwright/mcp
Feature | @playwright/mcp official | @kuramalab-io/mysupportdetails-mcp |
Chromium / Firefox / WebKit | yes, | yes, runtime switching |
Persistent profile | yes, | yes, runtime switching |
Multiple named profiles | no (one per server) | yes, N with metadata |
Profile CRUD from the agent | no | yes, |
Cross-profile in one prompt | no | yes, first-class |
Encryption at-rest | no | v2 roadmap (opt-in) |
Cross-platform | yes | yes |
Roadmap
See ROADMAP.md.
v0.1.0 MVP: multi-browser + one default profile per browser
v0.2.0 multiple named profiles + CRUD
v0.3.0 runtime switching without restarting the context
v0.4.0 examples + full docs
v1.0.0 public npm publish + Product Hunt / HN launch
Contributing
Issues and PRs welcome. See CONTRIBUTING.md.
License
MIT (c) 2026 KuramaLab
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kuramalab/mysupportdetails-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server