Skip to main content
Glama
rjskinnaindahizzy

raindrop-mcp-server

create_raindrop

Create a new bookmark in Raindrop.io by providing a URL. Add optional title, tags, notes, and collection, then save the link for organized access.

Instructions

Create a new bookmark.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
linkYesURL to bookmark (required)
noteNoPersonal notes (max 10000 chars)
tagsNoArray of tags
titleNoBookmark title (max 1000 chars)
excerptNoDescription or excerpt (max 10000 chars)
importantNoMark as favorite
collectionNoCollection ID (default: -1 for Unsorted)
pleaseParseNoIf true, Raindrop auto-fetches the page title and excerpt from the URL

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.7/5.0
Behavior1/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It only says 'Create a new bookmark' and discloses no side effects, authentication requirements, rate limits, or behavior such as metadata fetching via pleaseParse. For a mutation tool, this is a significant gap.

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

Conciseness4/5

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

The description is a single sentence with immediate front-loading of the core action. The word 'new' is mildly redundant, but overall it is appropriately terse and free of fluff.

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

Completeness2/5

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

This is an 8-parameter mutation tool with no annotations and no output schema. A one-line description is insufficient for an agent to understand return values, automatic parsing behavior, or usage context. The rich schema covers parameters, but the broader context 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 coverage is 100%, so every parameter is already documented in the input schema. The description adds no parameter-specific meaning, so the baseline of 3 is appropriate given the schema does the heavy lifting.

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

Purpose4/5

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

The description clearly states the operation: 'Create a new bookmark.' The verb 'create' and resource 'bookmark' (a synonym for raindrop) make the action unambiguous. It implicitly differentiates from create_collection by naming a different resource type, but it does not explicitly reference sibling tools or Raindrop-specific context.

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

Usage Guidelines2/5

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

No guidance is provided on when to use this tool versus alternatives such as update_raindrop or create_collection. The description is purely a statement of the operation with no mention of prerequisites, typical use cases, or exclusions.

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