get_recent_history
Retrieve recent browsing history entries from major browsers to access past visited websites with titles, URLs, and timestamps for reference and analysis.
Instructions
Get the most recent browsing history entries.
Args: limit: Maximum number of results to return (default: 50, max: 500) browser: Which browser to query ("brave", "safari", "chrome", "firefox", "edge", "arc", "opera", or "duckduckgo")
Returns: Formatted list of recent history entries with titles, URLs, and visit times
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": 50,
"type": "integer"
}
},
"type": "object"
}