Skip to main content
Glama
rjskinnaindahizzy

raindrop-mcp-server

get_raindrops

Retrieve bookmarks from a specified Raindrop collection, with options to search, sort, paginate, and include nested collections. Filter by collection ID to access all, unsorted, or trash.

Instructions

Get bookmarks from a collection with optional search and filtering. collectionId: 0=all, -1=unsorted, -99=trash.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoPage number (0-indexed)
sortNoSort: -created (default), created, score, -sort, title, -title, domain, -domain-created
nestedNoInclude bookmarks from nested collections
searchNoSearch query
perpageNoResults per page (max 50)
collectionIdNoCollection ID (0=all, -1=unsorted, -99=trash)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.8/5.0
Behavior3/5

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

No annotations are provided, so the description carries the behavioral burden. It makes the read-only retrieval intent clear through 'Get' and adds useful collectionId semantics (0=all, -1=unsorted, -99=trash). It does not mention pagination behavior, response shape, or authentication expectations, which keeps this at a minimally viable level.

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?

The description is two short sentences with no filler. The first sentence immediately conveys purpose, and the second highlights the most important scoping values for collectionId. It is well structured and front-loaded.

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

Completeness4/5

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

The schema fully documents invocation details, and the description supplies purpose and collection scope. The lack of an output schema and explicit sibling alternatives means the agent must infer response shape and tool-selection boundaries, but this is still complete enough for correct invocation.

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?

The schema already documents all six parameters with defaults, constraints, and descriptions, so the baseline is 3. The description repeats the collectionId sentinel values but does not add meaning beyond what the input schema already 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?

The description states a specific action and resource: 'Get bookmarks from a collection' with 'optional search and filtering.' The plural 'bookmarks' combined with collection scope distinguishes it clearly from get_raindrop (single bookmark) and get_collection (collection metadata).

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

Usage Guidelines3/5

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

The description implies usage for retrieving bookmarks from a specific or special collection, optionally filtered by search. However, it never explicitly states when to prefer this over get_raindrop or other sibling tools, so the routing guidance is inferred rather than declared.

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