MCP Web Browser Server

by random-robbie
Verified

browse_to

Navigate to a specific URL and return the page's HTML content. Args: url: The full URL to navigate to context: Optional context object for logging (ignored) Returns: The full HTML content of the page

Input Schema

NameRequiredDescriptionDefault
contextNo
urlYes

Input Schema (JSON Schema)

{ "properties": { "context": { "anyOf": [ {}, { "type": "null" } ], "default": null, "title": "Context" }, "url": { "title": "Url", "type": "string" } }, "required": [ "url" ], "title": "browse_toArguments", "type": "object" }