Skip to main content
Glama
PhononX

Carbon Voice

by PhononX

search_messages_by_heard_status

Read-only

Find voice messages you haven't listened to yet and get per-conversation unheard counts to prioritize which chats need attention first.

Instructions

Find messages by whether you have listened to them, and get per-conversation unheard counts. USE WHEN: "What have I not listened to yet" / "catch me up". heardStatus: "unheard" is the unread filter. The response also carries unheard_counts_by_channel, so you can prioritise conversations without fetching their messages. USE INSTEAD: search_message_ids for notified state, mentions or date anchors — this tool accepts no date filter (see note below). list_messages for plain recent history. EXAMPLE: {"heardStatus":"unheard","limit":25} RETURNS: {messages: [{message_guid, creator_guid, creator_first_name, channel_guids, transcript_txt, message_ts, heard_status, ...}], unheard_counts_by_channel: {conversation_id: count}, success}. Use unheard_counts_by_channel to decide where to look first. NARROW: pass response_fields ["unheard_counts_by_channel","messages.message_guid","messages.channel_guids","messages.creator_first_name","messages.transcript_txt","messages.message_ts"] unless you need more — the full payload is much larger.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoNumber of messages to return (max 100).
user_guidsNoOnly messages created by these users. Max 50 entries. Requires IDs, not names.
heardStatusNoFilter by listened state. `unheard` = not yet listened to (your unread messages), `heard` = already listened to, `any` = no filter.unheard
label_guidsNoOnly messages carrying these labels. Max 50 entries. Requires IDs, not names.
channel_guidsNoOnly messages in these conversations. Max 50 entries. Requires IDs, not names.
response_fieldsNoDot-path allowlist to shrink the response, e.g. ["results.id","total"]. Omit for the full payload.
tagged_user_guidsNoOnly messages where these users were tagged/mentioned. Max 50 entries. Requires IDs, not names.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv2.10.0

TDQS

A4.6/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is covered. The description adds useful context beyond annotations: the return shape, the unheard_counts_by_channel aggregation, and the warning that the full payload is much larger, prompting the NARROW guidance. No contradiction with annotations.

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 front-loaded with purpose, then uses clear labeled sections (USE WHEN, USE INSTEAD, EXAMPLE, RETURNS, NARROW). Every section earns its place and the format aids scanning. Length is justified by the tool's complexity, with no redundant sentences.

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?

For a 7-parameter tool with no output schema, the description covers the key gaps: usage context, alternatives, response shape, and payload optimization. The one limitation (no date filter) is disclosed. It stops short of describing pagination or interaction with limit, but the schema already documents limit's range and default, so the combination is adequate.

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%, so parameters are already fully documented. The description adds real value by recommending a specific response_fields dot-path allowlist, demonstrating with an example how to shrink the payload. It also reinforces that heardStatus='unheard' is the unread filter. This goes beyond mere schema repetition.

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?

States a specific verb and resource ('Find messages by whether you have listened to them') plus a distinct capability not implied by the name: per-conversation unheard counts. It differentiates from siblings by naming search_message_ids and list_messages as alternatives. The purpose is unambiguous and actionable.

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?

The USE WHEN section explicitly frames the intended scenario ('What have I not listened to yet' / 'catch me up') and flags the unread filter. USE INSTEAD names exact alternatives (search_message_ids for notified state/mentions/date anchors; list_messages for plain history) and discloses a key limitation: no date filter. This is exemplary when/when-not guidance.

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