Skip to main content
Glama
YangLiangwei

PersonalizationMCP

by YangLiangwei

get_user_profile

Retrieve a Spotify user's public profile by user ID to enable personalized, context-aware interactions.

Instructions

Get a specific user's public Spotify profile information.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
user_idYes
access_tokenNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3/5.0
Behavior2/5

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

With no annotations, the description carries the full behavioral burden, but it only restates the action and says 'public'. It does not disclose whether an access token is required, what the response contains, error conditions, or any side effects.

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?

One compact sentence with no filler; it is front-loaded and appropriately sized for a simple getter tool.

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?

For a tool with no output schema, no annotations, and no property descriptions, the description is too thin. An agent still lacks information about response shape, ID format, and auth expectations needed to call it correctly.

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

Parameters2/5

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

Schema description coverage is 0%, so the description must compensate. It maps 'specific user' to user_id in a general sense but does not explain the user_id format, how access_token affects the call, or why access_token is optional.

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 names the operation and resource: getting a specific user's public Spotify profile. It implies a distinction from the sibling get_current_user_profile by emphasizing 'specific user', but it does not explicitly state that this is for non-current users.

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 gives a context ('specific user's public profile') that lets an agent infer when to use it, but it does not explicitly state when not to use it or point to alternatives such as get_current_user_profile.

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

Deploy Server

Other Tools