Bear MCP Server

by jkawamoto
Verified

grab_url

Create a new note with the content of a web page and return its unique identifier.

Input Schema

NameRequiredDescriptionDefault
tagsNolist of tags. If tags are specified in the Bear’s web content preferences, this parameter is ignored.
urlYesurl to grab

Input Schema (JSON Schema)

{ "properties": { "tags": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "null" } ], "default": null, "description": "list of tags. If tags are specified in the Bear’s web content preferences, this parameter is ignored.", "title": "Tags" }, "url": { "description": "url to grab", "title": "Url", "type": "string" } }, "required": [ "url" ], "title": "grab_urlArguments", "type": "object" }