Skip to main content
Glama

Dayze — Life in Days + Notable People

Log Favorite Song (music write)

log_favorite_song

MUTATES the authenticated user favorite tracks list at /music. Use when they favorite or save a song — do not store this as a chat memory or in music_preferences. Example: “Henry Mancini - Piano And Strings (1995 Remastered)” → log_favorite_song({ track: "Henry Mancini - Piano And Strings (1995 Remastered)" }) or title + artist. Optional year_note, source_url. Requires API key or OAuth with scope context. Share tokens cannot write. ($0.10; API key required)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlNoAlias for source_url
titleNoTrack title (required unless track blob parses)
trackNoOptional "Artist - Title (year remaster)" blob
artistNoArtist name (required unless track blob parses)
year_noteNoOptional year or remaster note
source_urlNoOptional https link
remaster_noteNoAlias for year_note

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
trackYesSaved favorite-track record.
createdYesTrue when a new favorite was created.
messageYes
track_idYes

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already convey that this is a non-readonly, non-destructive, non-idempotent mutation. The description adds useful context by stating the mutation target, requiring API key or OAuth with scope, warning that share tokens cannot write, and listing a $0.10 cost. It does not mention duplicate-entry behavior, but the annotation context already covers the core safety traits.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The key fact (mutation target) is front-loaded, followed by a clear usage rule, example, and auth/cost context. There is minor redundancy in repeating that API key is required after already saying 'Requires API key or OAuth with scope,' but overall the description is compact and every section earns its place.

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?

With an output schema present and annotations covering the safety profile, the description provides enough context: what is mutated, when to use it, how to format the main parameter patterns, auth requirements, and cost. It does not discuss duplicate-logging behavior or error conditions, but those are not essential for invoking the tool correctly given the schema and annotations.

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?

Schema description coverage is 100%, so the baseline is 3. The description adds a concrete usage example showing a 'track' blob mapping ('Henry Mancini - Piano And Strings (1995 Remastered)') and clarifies that title + artist can be used instead. It also highlights optional fields (year_note, source_url) in the narrative, providing practical guidance beyond the schema.

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 names the specific verb 'MUTATES', the resource ('authenticated user favorite tracks list at /music'), and explicitly distinguishes this from storing the data as chat memory or in music_preferences. It is immediately clear which action the tool performs and how it differs from read-only siblings like get_* and from other logging tools like log_event or log_food.

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

Usage Guidelines5/5

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

Includes an explicit trigger: 'Use when they favorite or save a song' and a clear exclusion: 'do not store this as a chat memory or in music_preferences.' It also states auth preconditions (API key or OAuth with scope, share tokens cannot write), so the agent knows exactly when the call is appropriate and what is required to invoke it.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

B3.3/5.0
Disambiguation3/5

Most tools target distinct resources, but get_context_pack and get_life_context overlap heavily, and get_money_between_people is an intentional duplicate alias of get_person_transactions. The rest are mostly clear due to explicit descriptions.

Naming Consistency4/5

Naming is predominantly verb_noun snake_case with clear families (get_*, log_*, update_*, search_*, notable_*). Minor inconsistencies: create_person breaks the add_inventory_* pattern, and one-off verbs like record_, attach_, merge_ are not part of a uniform scheme.

Tool Count1/5

With 64 tools, this far exceeds the 50+ extreme threshold. The broad personal-life domain justifies many tools, but the count creates significant selection overhead and feels bloated, especially with redundant aliases and overlapping context pack variants.

Completeness4/5

The set covers inventory, CRM, events, food, expenses, travel, places, photos, Gmail, and notable-people lookup with strong read/write/search coverage. Minor gaps include no delete operations for events/people/food (only archive/update) and no explicit place creation.