browser_webmcp_get_all_tools
Browser Webmcp Get All Tools
Get all WebMCP tools across all browser contexts. Returns a JSON object keyed by context_id, with each value being an array of tool definitions. Useful for discovering which pages have registered tools without querying each context individually.
Usage Example
1234567891011
import asyncio
from owl_browser import OwlBrowser, RemoteConfig
# Async usage
async with OwlBrowser(config) as browser:
context = await browser.create_context()
context_id = context["context_id"]
await browser.webmcp_get_all_tools(
)
Response
Returns a JSON object with the operation result.
{
"success": true,
"result": <value>
}