get_most_visited
Retrieve your most frequently visited websites from browser history to identify browsing patterns and commonly accessed resources across major browsers like Chrome, Firefox, Safari, and Edge.
Instructions
Get the most frequently visited sites from browser history.
Args: limit: Maximum number of results to return (default: 20, max: 100) browser: Which browser to query ("brave", "safari", "chrome", "firefox", "edge", "arc", "opera", or "duckduckgo")
Returns: Formatted list of most visited sites with visit counts
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| browser | No | brave |
Input Schema (JSON Schema)
{
"properties": {
"browser": {
"default": "brave",
"enum": [
"brave",
"safari",
"chrome",
"firefox",
"edge",
"arc",
"opera",
"duckduckgo"
],
"type": "string"
},
"limit": {
"default": 20,
"type": "integer"
}
},
"type": "object"
}