GET /api/buckets
List all bucket names for your account. A bucket is created automatically when you save a note with a new bucket name.Response
200 OK —string[] — array of bucket name strings, in no guaranteed order.
GET /api/tags
List all tags for your account, along with the number of notes each tag appears in. Results are sorted by count descending. You can filter to tags within specific buckets.Tags in API responses do not include the
# prefix. The # is added automatically when tags are displayed in the web app or returned by MCP tools.Query parameters
Filter tags to only those appearing in notes within the specified buckets. Pass multiple values to include several buckets:
?buckets=Work&buckets=Research. If omitted, tags from all buckets are returned.Response
200 OK — array of{ tag: string, count: number } objects, sorted by count descending.
The tag name without a
# prefix.The number of notes that have this tag.