Skip to main content
Glama
masaodev

chrome-bookmarks-mcp

by masaodev

Get tree

bookmarks_get_tree
Read-only

Retrieves the entire Chrome bookmark tree or a branch under a given ID, revealing folder IDs for navigation and management.

Instructions

Return the whole bookmark tree (or the subtree under id). Use it to find folder ids. The ids of the top-level folders (Bookmarks bar / Other bookmarks) differ per Chrome profile, so call bookmarks_get_children with id 0 to look them up.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNoReturn only the subtree under this id (omit for the whole tree)
formatNoOutput format: text = human-readable list, json = raw BookmarkTreeNode datatext

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With readOnlyHint=true already covering safety, the description adds valuable behavioral context: it returns the whole tree or a subtree, and it warns that top-level folder ids vary across Chrome profiles. This goes beyond the annotation without contradicting it.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two tight sentences, with the core purpose front-loaded and the usage note immediately following. Every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple read-only tree retrieval tool with zero required parameters and fully documented schema, the description covers what the tool does, how to use it, and how it relates to a sibling. Nothing essential is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents both parameters. The description reinforces the meaning of id by referencing 'subtree under id', but it does not add much beyond what the schema provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb ('Return') and resource ('the whole bookmark tree or the subtree under id'), making its function immediately clear. It also distinguishes itself from the sibling bookmarks_get_children by describing the tree-level scope and its role in finding folder ids.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly says when to use this tool: to find folder ids. It also names the alternative bookmarks_get_children and explains the specific profile-dependent caveat that requires calling it with id 0 to resolve top-level folder ids.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.