get_user
Retrieve the authenticated user's Raindrop.io profile and account information to enable personalized interactions and contextual actions.
Instructions
Get current user information.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Retrieve the authenticated user's Raindrop.io profile and account information to enable personalized interactions and contextual actions.
Get current user information.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
v1.0.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden of behavioral disclosure. The word 'Get' makes the read-only nature clear, and 'current user' scopes the operation. However, it does not describe response structure, whether authentication is required, or error behavior, leaving modest gaps for a zero-parameter read.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, direct sentence with no filler. The verb and resource are front-loaded, and every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter tool with no output schema, the description is sufficient for an agent to invoke it correctly. The only mino gaps are what 'user information' includes and whether 'current' refers to the authenticated user, but these are minor for such a simple tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has zero parameters and schema description coverage is 100%, so the schema fully covers the input. Per the baseline rule for zero-parameter tools, the description does not need to add parameter semantics.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb 'Get' and a specific resource, 'current user information,' which clearly distinguishes it from sibling tools operating on collections, raindrops, and tags. An agent can tell exactly what this tool does without opening external documentation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
There is no explicit when/when-not language, but 'current user' clearly implies the authenticated user context, and no sibling tool overlaps with this purpose. This provides clear usage context without exclusions, though not an explicit alternative routing statement.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.