Skip to main content
Glama
YangLiangwei

PersonalizationMCP

by YangLiangwei

get_spotify_config

Check the current configuration status of your Spotify API connection to verify authentication and settings.

Instructions

Get Spotify API configuration status.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.5/5.0
Behavior3/5

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

With no annotations, the description carries the burden of behavioral disclosure. 'Get' implies a read-only operation, which is transparent about side effects, but it doesn't mention whether the call requires authentication, what 'configuration status' includes, or whether it's safe to invoke at any time. The description adds minimal value beyond the implied read-only nature.

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 a single, front-loaded sentence with zero waste. It gets straight to the point and is appropriately sized for a zero-parameter getter.

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?

The output schema exists (though not shown in the definition), so return-value documentation is covered elsewhere. However, the description doesn't clarify what constitutes 'configuration status' beyond the tool name, nor does it hint at whether this is a quick check or a detailed report. For a simple getter with no params, it's adequately complete, but could benefit from one sentence clarifying the scope versus sibling tools.

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

Parameters4/5

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

The tool has zero parameters and the schema has 100% coverage (empty object). Per the rubric, a baseline of 4 is appropriate when no parameters need explanation. The description provides no parameter semantics, but none are needed.

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 states a clear verb and resource ('Get Spotify API configuration status'), but the term 'configuration status' is generic and doesn't distinguish this from sibling get_spotify_token_status, which is more specific. It's clear enough for a simple getter, but lacks the precision to route an agent to the right tool among many similar get_* tools.

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?

The description gives no guidance on when to use this tool versus alternatives like get_spotify_token_status or test_spotify_credentials. There is no mention of use cases, prerequisites, or exclusions, leaving the agent to guess which status-related getter is appropriate.

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