Skip to main content
Glama

Personalized Content

get_personalized_content
Read-onlyIdempotent

Returns a fully personalized KAZM experience — greeting in the listener's language, recommendations from their history, station brief. Accepts listener_id OR email, so no separate registration step is ever needed. Pairs perfectly with get_or_create_listener.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
emailNoEmail address — alternative to listener_id
listener_idNoThe listener's unique ID
content_typeNogreeting = localized welcome only; recommendations = based on history; full = everything (default)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
greetingNo
listenerYes
session_tipNo
recommendationsNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "$schema": "http://json-schema.org/draft-07/schema#",
      +  "additionalProperties": false,
      +  "properties": {
      +    "greeting": {
      +      "type": "string"
      +    },
      +    "listener": {
      +      "additionalProperties": false,
      +      "properties": {
      +        "id": {
      +          "type": "string"
      +        },
      +        "language": {
      +          "type": "string"
      +        },
      +        "location": {
      +          "type": [
      +            "string",
      +            "null"
      +          ]
      +        },
      +        "name": {
      +          "type": "string"
      +        }
      +      },
      +      "required": [
      +        "id",
      +        "name",
      +        "location",
      +        "language"
      +      ],
      +      "type": "object"
      +    },
      +    "recommendations": {
      +      "items": {
      +        "additionalProperties": {},
      +        "type": "object"
      +      },
      +      "type": "array"
      +    },
      +    "session_tip": {
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "listener"
      +  ],
      +  "type": "object"
      +}
  2. Changed2 schema fields changed
    • addedInput schema / properties / email
      Added value: +{
      +  "description": "Email address — alternative to listener_id",
      +  "type": "string"
      +}
    • removedInput schema / required
      Removed value: -[
      -  "listener_id"
      -]
  3. Added

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already show read-only, idempotent, non-destructive. Description adds concrete behavior (returns greeting, recommendations, etc.) and input flexibility, no contradictions.

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?

Two sentences, front-loaded with result, no waste. Highly efficient.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given output schema exists and annotations cover safety, description is complete—covers what it returns, how to call, and companion tool.

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 coverage is 100%. Description adds value by explaining the OR relationship for listener_id/email and the effect of content_type beyond enum labels.

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?

Description clearly states the tool returns a fully personalized KAZM experience with specific components (greeting, recommendations, station brief). Distinct from many get_* siblings.

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

Usage Guidelines4/5

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

Specifies it accepts listener_id OR email and pairs perfectly with get_or_create_listener, giving clear context. Lacks explicit when-not-to-use, but sufficient.

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.

Resources