← webrun.ai
INDIVIDUAL MCP TOOL
get_task_status
Check the status of a task previously started in a browser session.
LIVE ENDPOINT
https://api.webrun.ai/mcp
Connect to this endpoint to inspect the live schema for get_task_status and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- No write-capable action terms were found; this is not proof that invocation has no side effects.
Parent server
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).create_session— Create a persistent session in a real Chrome browser running in a WebRun cloud environment (docs.webrun.ai), for multi-step workflows.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).