31 lines
1.4 KiB
JSON
31 lines
1.4 KiB
JSON
{
|
|
"name": "chrome_history",
|
|
"description": "Retrieve and search browsing history from Chrome",
|
|
"parameters": {
|
|
"type": "object",
|
|
"properties": {
|
|
"text": {
|
|
"type": "string",
|
|
"description": "Text to search for in history URLs and titles. Leave empty to retrieve all history entries within the time range."
|
|
},
|
|
"startTime": {
|
|
"type": "string",
|
|
"description": "Start time as a date string. Supports ISO format (e.g., \"2023-10-01\", \"2023-10-01T14:30:00\"), relative times (e.g., \"1 day ago\", \"2 weeks ago\", \"3 months ago\", \"1 year ago\"), and special keywords (\"now\", \"today\", \"yesterday\"). Default: 24 hours ago"
|
|
},
|
|
"endTime": {
|
|
"type": "string",
|
|
"description": "End time as a date string. Supports ISO format (e.g., \"2023-10-31\", \"2023-10-31T14:30:00\"), relative times (e.g., \"1 day ago\", \"2 weeks ago\", \"3 months ago\", \"1 year ago\"), and special keywords (\"now\", \"today\", \"yesterday\"). Default: current time"
|
|
},
|
|
"maxResults": {
|
|
"type": "number",
|
|
"description": "Maximum number of history entries to return. Use this to limit results for performance or to focus on the most relevant entries. (default: 100)"
|
|
},
|
|
"excludeCurrentTabs": {
|
|
"type": "boolean",
|
|
"description": "When set to true, filters out URLs that are currently open in any browser tab. Useful for finding pages you've visited but don't have open anymore. (default: false)"
|
|
}
|
|
},
|
|
"required": []
|
|
}
|
|
}
|