open_web_page
Opens a specified URL in a new browser window via the MCP Communication Server, waits for WebSocket data from the page, and handles timeout settings for real-time interaction.
Instructions
在IDE中打开一个新的网页窗口显示指定的URL,并自动等待接收页面发送的WebSocket数据
Input Schema
Name | Required | Description | Default |
---|---|---|---|
timeoutMs | No | 等待数据的超时时间(毫秒),默认10秒 | |
url | Yes | ||
waitForData | No | 是否等待页面发送数据,默认为true |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"timeoutMs": {
"description": "等待数据的超时时间(毫秒),默认10秒",
"type": "number"
},
"url": {
"format": "uri",
"type": "string"
},
"waitForData": {
"description": "是否等待页面发送数据,默认为true",
"type": "boolean"
}
},
"required": [
"url"
],
"type": "object"
}