get_spotify_token_status
Check if your Spotify access token is valid or expired to ensure authenticated API requests.
Instructions
Get Spotify token status information
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Check if your Spotify access token is valid or expired to ensure authenticated API requests.
Get Spotify token status 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 must carry the full burden of behavioral disclosure. It only says 'Get', which implies a read operation, but does not explicitly state that it is non-destructive, requires an existing stored token, or makes a network call. It also doesn't describe what happens when no token exists.
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?
The description is a single clear sentence with no unnecessary words, front-loaded with the verb and resource. It is concise, though it could add a bit more context about what 'status' includes without becoming verbose.
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 tool with no output schema, the description should at least indicate the kind of status information returned (e.g., connected, expiry, scopes). It also doesn't say whether a token must already exist. The tool is simple, but the description leaves the agent guessing about the response shape and preconditions.
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?
There are zero parameters, so there is nothing to document. The baseline of 4 applies because no parameter information is missing; the description adds the purpose but doesn't need to cover 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?
States a specific verb 'Get' and resource 'Spotify token status', and the 'Spotify' qualifier clearly differentiates it from sibling tools like get_youtube_token_status and get_reddit_token_status. However, 'status information' is vague about what specific fields are returned, so it is clear but not fully specific.
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?
No description of when to use this tool versus sibling tools such as test_spotify_credentials, refresh_spotify_token, or get_spotify_config. The agent is given no guidance on selection criteria or conditions that would make this tool appropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.