Files

27 lines
807 B
JSON

{
"name": "chrome_bookmark_add",
"description": "Add a new bookmark to Chrome",
"parameters": {
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "URL to bookmark. If not provided, uses the current active tab URL."
},
"title": {
"type": "string",
"description": "Title for the bookmark. If not provided, uses the page title from the URL."
},
"parentId": {
"type": "string",
"description": "Parent folder path or ID to add the bookmark to. Can be a path string (e.g., \"Work/Projects\") or a folder ID. If not provided, adds to the \"Bookmarks Bar\" folder."
},
"createFolder": {
"type": "boolean",
"description": "Whether to create the parent folder if it does not exist (default: false)"
}
},
"required": []
}
}