Skip to main content
Glama
rjskinnaindahizzy

raindrop-mcp-server

delete_raindrop

Remove a Raindrop.io bookmark by ID. Moves it to trash, or permanently deletes it if already in trash.

Instructions

Delete a bookmark by ID. Moves to trash, or permanently deletes if already in trash.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesBookmark ID to delete

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations, the description carries the full behavioral burden. It discloses the key side effect: deletion moves the bookmark to trash, and a bookmark already in trash is permanently deleted. This is important non-obvious behavior that an agent needs to know before invoking a destructive tool.

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 one efficient sentence with no filler. It front-loads the primary action, then adds the critical trash/permanent-delete nuance. Every word contributes to safe and correct invocation.

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?

For a one-parameter delete tool with no output schema, the description covers the essential behavior and the important edge case. It does not mention error responses or what happens if the ID does not exist, but that is a minor gap for such a simple operation.

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 the 'id' parameter as 'Bookmark ID to delete.' The description adds no additional format, source, or validation details beyond 'by ID,' which is acceptable given the high schema coverage.

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 starts with a specific verb and resource: 'Delete a bookmark by ID.' It immediately distinguishes itself from sibling tools like get_raindrop, update_raindrop, and delete_collection by naming both the action and the target entity.

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

Usage Guidelines4/5

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

The intended use is clear: delete a bookmark by its ID. It does not explicitly mention alternatives or exclusion criteria, but the operation is simple enough that 'Delete a bookmark by ID' provides unambiguous usage context.

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