← webrun.ai

INDIVIDUAL MCP TOOL

create_session

Create a persistent session in a real Chrome browser running in a WebRun cloud environment (docs.webrun.ai), for multi-step workflows.

webrun.ainone authenticationAvailability not checked

LIVE ENDPOINT

https://api.webrun.ai/mcp

No auth detected

Connect to this endpoint to inspect the live schema for create_session 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 write-action term.

Parent server

webrun.ai

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.webrun-browser]
url = "https://api.webrun.ai/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "webrun-browser": {
      "type": "http",
      "url": "https://api.webrun.ai/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: webrun-browser
Remote MCP URL: https://api.webrun.ai/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": {
    "webrun-browser": {
      "url": "https://api.webrun.ai/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "webrun-browser": {
      "type": "http",
      "url": "https://api.webrun.ai/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "webrun-browser",
  "transport": "streamable-http",
  "url": "https://api.webrun.ai/mcp"
}
MCP Inspector

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

Related tools

  • browser_task — Execute a browser automation task in a real Chrome browser running in a WebRun cloud environment (docs.webrun.ai).
  • send_task — Send a new task to an existing browser session (from create_session).
  • pause_session_task — Pause the task currently running in a browser session.
  • resume_session_task — Resume a previously paused task in a browser session.
  • stop_session_task — Cancel the task currently running in a browser session, keeping the session alive for new tasks.
  • terminate_session — End a browser session and free its resources.
  • guardrail_response — Respond to a guardrail trigger when the browser agent needs human input (credentials, clarification, approval).
  • get_task_status — Check the status of a task previously started in a browser session.