Quick Setup
- Claude Desktop
- Cursor
- Claude Code
Add to Restart Claude Desktop. You’ll be prompted to authenticate via OAuth.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):Available Tools
run_web_automation
Executes web automation and streams progress in real-time. Best for interactive use where you want to see what’s happening.
Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
url | string | Yes | Target website URL |
goal | string | Yes | Natural language description of what to do |
browser_profile | string | No | lite (default) or stealth for anti-detection |
proxy_config | object | No | Proxy settings with enabled and country_code |
run_web_automation_async
Starts automation asynchronously and returns a run_id immediately. Use this for long-running tasks where you don’t need real-time progress.
Parameters: Same as run_web_automation
Returns:
get_run
Retrieves details of a specific automation run by ID. Use this to check status and get results of async runs.
Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | Yes | The run ID |
list_runs
Lists your automation runs with optional filtering and pagination.
Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
status | string | No | Filter by status: PENDING, RUNNING, COMPLETED, FAILED, CANCELLED |
cursor | string | No | Pagination cursor from previous response |
limit | number | No | Max results (1-100, default 20) |
Authentication
Mino MCP uses OAuth 2.1 for secure authentication. The first time you connect, your browser will open to complete the OAuth flow.Before You Start
Make sure you are signed in to both of these in your default browser before triggering the OAuth flow:Authentication Flow
When you first configure the Mino MCP server, Claude Desktop will open your default browser to complete OAuth. Since you’re already signed in to both services, the flow will redirect automatically and complete without manual input.You need a Mino account with an active subscription or credits. Sign up here.
Troubleshooting
Tool not showing up
Tool not showing up
- Restart your AI client after adding the config
- Check that the config JSON is valid
- Ensure you’re authenticated (OAuth prompt should appear)
Authentication failing
Authentication failing
Before starting the OAuth flow, make sure you are already signed in to both services in your default browser:
- Open your default browser and sign in to claude.ai
- In the same browser, sign in to mino.ai
- Then restart Claude Desktop and trigger the OAuth flow again
- Clear cookies - Clear browser cookies for both claude.ai and mino.ai, then retry
- Check Mino account - Verify your account is active at mino.ai/api-keys
Server disconnected (Windows)
Server disconnected (Windows)
On Windows, if you see “Server disconnected” errors:
- Close Claude Desktop completely - Check Task Manager and end any Claude processes
- Use the direct URL method - The recommended setup using
"url": "https://mino.ai/mcp"in your config avoids these issues entirely (see Quick Setup above) - Complete OAuth quickly - When the browser opens, complete the sign-in promptly to avoid timeout issues
Automation timing out
Automation timing out
Complex automations may take 30-60 seconds. For sites with bot protection, the assistant should use
browser_profile: "stealth".