23 lines
661 B
JSON
23 lines
661 B
JSON
{
|
|
"name": "chrome_bookmark_search",
|
|
"description": "Search Chrome bookmarks by title and URL",
|
|
"parameters": {
|
|
"type": "object",
|
|
"properties": {
|
|
"query": {
|
|
"type": "string",
|
|
"description": "Search query to match against bookmark titles and URLs. Leave empty to retrieve all bookmarks."
|
|
},
|
|
"maxResults": {
|
|
"type": "number",
|
|
"description": "Maximum number of bookmarks to return (default: 50)"
|
|
},
|
|
"folderPath": {
|
|
"type": "string",
|
|
"description": "Optional folder path or ID to limit search to a specific bookmark folder. Can be a path string (e.g., \"Work/Projects\") or a folder ID."
|
|
}
|
|
},
|
|
"required": []
|
|
}
|
|
}
|