GDD (Giggly-Dazzling-Duckling)
How It Works
You: Open 3 iPhones and a desktop, navigate to myapp.com, test the signup form on all devices
Claude Code creates 4 browsers with device emulation, navigates each to your app, fills in the form, takes screenshots, checks console for errors — all in parallel.
gdd_add_players(3, device="iPhone 15 Pro") → players [1, 2, 3]
gdd_add_players(1, device="Desktop 1080p") → player [4]
gdd_navigate(1, "https://myapp.com") → all 4 browsers open your app
gdd_tap(1, "#signup-btn") → taps signup on iPhone
gdd_screenshot(1) → captures the result
gdd_get_console(1, level="error") → checks for JS errorsGDD runs N isolated Chromium instances, each with its own profile, cookies, device emulation, geolocation, and network conditions. It exposes 37 MCP tools via HTTP on localhost:9700.
Related MCP server: Scout
Install
Platform | Download | Run |
Linux |
| |
macOS ARM |
| |
macOS Intel |
| |
Windows |
| |
Windows GUI | Extract, run | |
Docker |
|
|
Claude Desktop | Open |
Self-contained binary, ~70 MB. No .NET installation needed. Chromium downloads automatically on first launch.
One-liner (Linux):
curl -sL https://github.com/Cap-of-tea/GDD/releases/latest/download/GDD-Server-Linux.tar.gz | tar xz && chmod +x GDD.Headless && ./GDD.Headless# Run (headless, port 9700)
docker run -p 9700:9700 ghcr.io/cap-of-tea/gdd
# Or build locally
docker build -t gdd .
docker run -p 9700:9700 gddThe Docker image runs in headless mode with all Chromium dependencies pre-installed.
By default, browsers launch in headed mode (visible windows). Add --headless for CI/CD.
Connect to Your AI Client
Add to .mcp.json and restart your AI client:
{
"mcpServers": {
"gdd": {
"url": "http://localhost:9700/mcp"
}
}
}That's it. Start GDD, tell Claude or Cursor to test your app.
Claude Desktop users: Download the
.mcpbfile from Releases and open it — GDD installs as a one-click desktop extension. No manual config needed.
Client | Project config | Global config |
Claude Code |
|
|
Cursor |
|
|
VS Code / Windsurf / Antigravity |
| IDE |
Global and project configs are merged — servers from both are available simultaneously. Changes are picked up only when restarting the AI client session.
VS Code-based IDEs use a different config format than Claude Code / Cursor.
Project config — .vscode/mcp.json:
{
"servers": {
"gdd": {
"type": "http",
"url": "http://localhost:9700/mcp"
}
}
}Global config — open via Cmd+Shift+P → "Open User Settings (JSON)":
{
"mcp": {
"servers": {
"gdd": {
"type": "http",
"url": "http://localhost:9700/mcp"
}
}
}
}Global settings.json location: macOS — ~/Library/Application Support/<IDE>/User/settings.json, Linux — ~/.config/<IDE>/User/settings.json, Windows — %APPDATA%/<IDE>/User/settings.json. Replace <IDE> with your editor name (Code, Windsurf, Antigravity, etc.).
stdio-proxy alternative (.vscode/mcp.json):
{
"servers": {
"gdd": {
"type": "stdio",
"command": "bash",
"args": ["/absolute/path/to/Scripts/mcp-proxy.sh"]
}
}
}By default, Claude Code asks for confirmation on every MCP tool call. To allow GDD tools without prompts, add to ~/.claude/settings.json:
{
"permissions": {
"allow": [
"mcp__gdd__*"
]
}
}This single wildcard covers all 37 GDD tools. Restart Claude Code after editing.
Proxy scripts start GDD automatically when your AI client connects:
Windows:
{
"mcpServers": {
"gdd": {
"command": "powershell",
"args": ["-ExecutionPolicy", "Bypass", "-File", "C:/path/to/Scripts/mcp-proxy.ps1"]
}
}
}Linux / macOS:
{
"mcpServers": {
"gdd": {
"command": "bash",
"args": ["/path/to/Scripts/mcp-proxy.sh"]
}
}
}Add "--headless" to the args array for CI/CD.
Tip: On first launch, GDD downloads Chromium (~80 MB). If your AI client times out, run GDD manually first, then reconnect.
macOS (launchd):
bash Scripts/install-launchd.sh # headed (default)
bash Scripts/install-launchd.sh --headless # for CI/CDManage: launchctl list | grep gdd / bash Scripts/install-launchd.sh --uninstall
Linux (systemd):
mkdir -p ~/.config/systemd/user
cat > ~/.config/systemd/user/gdd.service << 'EOF'
[Unit]
Description=GDD Multi-Browser Testing Server
[Service]
ExecStart=/path/to/GDD.Headless
WorkingDirectory=/path/to/gdd-directory
Restart=on-failure
[Install]
WantedBy=default.target
EOF
systemctl --user daemon-reload
systemctl --user enable --now gddcurl -X POST http://localhost:9700/mcp -H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"gdd_add_players","arguments":{"count":1}}}'GDD uses standard JSON-RPC 2.0 — works with curl, Python, Node.js, or any HTTP client.
Features
Multi-device — Run N isolated Chromium instances with 22 device presets (phones, tablets, desktops)
AI-native — 37 MCP tools for Claude Code, Cursor, or any MCP-compatible client
Cross-platform — Windows GUI with live video wall + headed/headless on Linux & macOS
Full interaction — Navigate, tap, type, swipe, scroll, hover, handle dialogs, take screenshots
Human-like input —
humanize=truemoves the mouse along a cubic Bézier curve with natural easing and micro-jitter before clickingDevice emulation — Screen size, DPR, touch, user agent, geolocation, timezone, language
Network control — Simulate 4G, Fast 3G, Slow 3G, or offline per browser
Diagnostics — Console errors, network traffic, performance metrics, push notifications
Error beacon — Every tool response warns about JS errors across all browsers automatically
Docker-ready — Official image on GHCR (
ghcr.io/cap-of-tea/gdd), listed on the MCP RegistrySelf-updating — Built-in version check and one-command update
MCP Tools (37)
Player Management
Tool | Description |
| Add N browser instances with optional device preset |
| Remove a browser instance by player ID |
| List all active browsers with current state |
Navigation
Tool | Description |
| Navigate to a URL |
| Wait for a CSS selector to appear (with timeout) |
| Reload page ( |
| Navigate back |
| Navigate forward |
Interaction
Tool | Description |
| Tap element by CSS selector or coordinates; dispatches touch + mouse/click events. |
| Swipe gesture (up/down/left/right) |
| Drag an element to (x, y) or onto another element via real pointer events (drives dnd-kit & HTML5 drag-and-drop) |
| Scroll page or element |
| Type text into input fields |
| Hover over element. |
| Select option from |
| Handle JS alert/confirm/prompt dialogs |
Reading & Screenshots
Tool | Description |
| Read text content of an element |
| Read text from all matching elements |
| Capture JPEG screenshot at CSS pixel resolution |
Emulation
Tool | Description |
| Set device preset (22 devices: phones, tablets, desktops) |
| Set custom viewport dimensions |
| Set geolocation, timezone, and locale |
| Set network conditions (4G, 3G, offline) |
| Set browser language |
State & Diagnostics
Tool | Description |
| Browser state: URL, title, device, auth status |
| Console output and uncaught exceptions |
| Network requests with timing and status |
| Received push notifications |
| Performance metrics (JS heap, DOM nodes, FPS) |
| Clear console and/or network logs |
Auth & Execution
Tool | Description |
| Auto-register and login with generated credentials |
| Execute JavaScript and return result |
Browser Storage
Tool | Description |
| Read/write/clear localStorage/sessionStorage |
| Read or clear browser cookies |
Help & Updates
Tool | Description |
| Full GDD manual for AI self-learning |
| Check for newer versions |
| Download and install update (restarts GDD) |
Phones (11)
Device | Resolution | Scale | Touch |
iPhone SE | 375 x 667 | 2.0x | Yes |
iPhone 14 | 390 x 844 | 3.0x | Yes |
iPhone 15 Pro | 393 x 852 | 3.0x | Yes |
iPhone 15 Pro Max | 430 x 932 | 3.0x | Yes |
iPhone 16 Pro | 402 x 874 | 3.0x | Yes |
iPhone 16 Pro Max | 440 x 956 | 3.0x | Yes |
Pixel 9 | 412 x 915 | 2.625x | Yes |
Pixel 9 Pro | 412 x 915 | 2.625x | Yes |
Galaxy S24 | 360 x 780 | 3.0x | Yes |
Galaxy S24 Ultra | 412 x 915 | 3.0x | Yes |
OnePlus 12 | 412 x 915 | 3.5x | Yes |
Tablets (6)
Device | Resolution | Scale |
iPad Mini | 744 x 1133 | 2.0x |
iPad Air | 820 x 1180 | 2.0x |
iPad Pro 11" | 834 x 1194 | 2.0x |
iPad Pro 13" | 1024 x 1366 | 2.0x |
Galaxy Tab S9 | 800 x 1280 | 2.0x |
Pixel Tablet | 800 x 1280 | 2.0x |
Desktops (5)
Device | Resolution | Scale |
Laptop HD | 1366 x 768 | 1.0x |
Laptop HiDPI | 1440 x 900 | 2.0x |
Desktop 1080p | 1920 x 1080 | 1.0x |
Desktop 1440p | 2560 x 1440 | 1.0x |
Desktop 4K | 3840 x 2160 | 2.0x |
Architecture
Client (AI agent / curl / script)
│ POST /mcp (JSON-RPC 2.0)
▼
McpServer (:9700)
Streamable HTTP + SSE
│
▼
McpToolRegistry (37 tools)
Player · Navigation · Interaction · Read
Emulation · Auth · State · Diagnostics
│
▼
IPlayerManager
MainViewModel (WPF) / HeadlessPlayerManager
│
▼
IBrowserEngine Instances
WebView2 (Win GUI) | Playwright (Headless/Headed)
Each: own profile, CDP session, emulationThree Modes
Windows GUI | Headed (default) | Headless | |
Binary |
|
|
|
Engine | WebView2 | Playwright | Playwright |
UI | WPF video wall | Visible Chromium windows | HTTP API only |
Platforms | Windows | Windows, Linux, macOS | Windows, Linux, macOS |
Tech Stack
Layer | Technology |
Runtime | .NET 8.0 (self-contained) |
UI (Windows) | WPF + CommunityToolkit.Mvvm |
Browser (GUI) | Microsoft WebView2 |
Browser (Headless) | Microsoft Playwright |
Protocol | MCP (Model Context Protocol) |
Browser Control | Chrome DevTools Protocol (CDP) |
Logging | Serilog |
BrowserXn.sln
├── src/
│ ├── GDD.Core/ ← Shared library (net8.0)
│ │ ├── Abstractions/ ← IBrowserEngine, IPlayerManager, ...
│ │ ├── Mcp/ ← MCP server, tools, protocol
│ │ ├── Models/ ← Device, Location, Network presets
│ │ ├── Services/ ← CDP, Emulation, Monitoring services
│ │ └── Collections/ ← RingBuffer
│ ├── BrowserXn/ ← Windows GUI (WPF + WebView2)
│ │ ├── Engines/ ← WebView2ControlAdapter
│ │ ├── ViewModels/ ← MVVM (MainViewModel : IPlayerManager)
│ │ ├── Views/ ← XAML + VideoWallPanel
│ │ └── ...
│ └── GDD.Headless/ ← Cross-platform CLI (Playwright)
│ ├── Engines/ ← PlaywrightEngine
│ ├── Platform/ ← HeadlessPlayerManager
│ └── Scripts/ ← mcp-proxy.sh, mcp-proxy.ps1
└── .github/workflows/ ← CI/CD (5 platform targets + auto-release)appsettings.json next to the executable:
{
"GDD": {
"FrontendUrl": "about:blank",
"BackendUrl": "http://localhost:8080/api/v1",
"BotToken": "",
"McpPort": 9700,
"DataFolderRoot": ""
}
}Key | Description | Default |
| Default URL for new browsers |
|
| Backend API for auth service |
|
| Telegram bot token (for TG testing) | — |
| MCP server port (auto-fallback +1..+9) |
|
| Browser profile storage root |
|
| Visible browser windows |
|
Requires .NET 8 SDK.
# Windows GUI (requires Windows 10/11 + WebView2)
dotnet publish src/BrowserXn/BrowserXn.csproj -c Release -p:PublishSingleFile=true -o ./publish/win-gui
# Cross-platform headless
dotnet publish src/GDD.Headless/GDD.Headless.csproj -c Release -r linux-x64 --self-contained -o ./publish/linux-x64
dotnet publish src/GDD.Headless/GDD.Headless.csproj -c Release -r osx-arm64 --self-contained -o ./publish/osx-arm64
dotnet publish src/GDD.Headless/GDD.Headless.csproj -c Release -r win-x64 --self-contained -o ./publish/win-x64Chromium installs automatically on first run.
Documentation
GDD-MANUAL.md — Full usage manual with workflow examples
GDD-ARCHITECTURE.md — Architecture deep-dive
GDD-PROMPT.md — Claude agent instructions for MCP integration
CONTRIBUTING.md — Contribution guidelines
Privacy
GDD runs entirely on your local machine. No telemetry, no analytics, no data collection.
No data leaves your machine — all browser profiles, screenshots, logs, and cookies stay in local storage
Browser profiles — stored in
%LOCALAPPDATA%\GDD\Profiles(Windows) or~/.local/share/GDD/Profiles(Linux/macOS)No third-party services — GDD does not contact any external APIs except GitHub Releases for optional update checks
Update checks —
gdd_check_updatemakes a single read-only request toapi.github.com. Opt out by not calling the tool, or setCheckForUpdates: falseinappsettings.jsonMCP server — listens on
localhostonly (default port 9700), never exposed to the network
Contact: 2vsmirnov@gmail.com
License
imVS©, free for personal use.
Source Available — Non-Commercial. Free for personal use, education, and research. Commercial use requires a paid license. See LICENSE for full terms.
Commercial licensing: 2vsmirnov@gmail.com
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
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/Cap-of-tea/GDD'
If you have feedback or need assistance with the MCP directory API, please join our Discord server