Skip to main content
Glama

Reach MCP — LinkedIn for AI agents

list_conversation_messages

Read-onlyIdempotent

List messages in a LinkedIn conversation via Voyager /messaging/conversations/{id}/events (Kanbox get_conversation_messages), with optional created_before paging — same as GET /api/linkedin/{account_id}/conversations/{conversation_linkedin_id}/messages.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
account_idYesReach id of the LinkedIn account to act on, from list_accounts.
created_beforeNoOnly messages created before this Unix timestamp in milliseconds, to page back in time.
conversation_linkedin_idYesConversation (thread) id, as returned by list_conversations.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
has_moreNoTrue when LinkedIn likely has older events (page size 20).
messagesNo
total_countNoNumber of messages in this response.
next_created_beforeNoPass as ``created_before`` to fetch the next (older) page.
conversation_linkedin_idNoKanbox ``Conversation.linkedin_id`` / conversation key.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the core safety profile is covered. The description adds useful behavioral context beyond the annotations by naming the exact underlying endpoints and explaining that created_before controls legacy/unused paging; this is meaningful, even though it does not discuss authorization, rate limits, or response structure.

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: it states the core action first, then compacts relevant implementation details into a short clause. There is no filler, and every segment—action, endpoint, paging hint, exact equivalent route—adds useful information without making the text bulky.

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 read-only tool with a clear schema, a complete output_schema, and no nested objects, the description provides enough context to guide correct invocation: it identifies the use case, the relevant conversation ID source, and the optional paging direction. It does not discuss ordering, default page size, or 'latest message first' behavior, but the output schema and annotations compensate for most of that.

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

Parameters3/5

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

The input schema already provides 100% descriptive coverage of all three parameters, including origin and type for account_id, conversation_linkedin_id, and created_before. The description adds little beyond restating created_before as 'paging' and echoing the endpoint pattern, so it stays at the schema-covered baseline.

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 first phrase is a specific verb+resource statement: 'List messages in a LinkedIn conversation,' making the function's purpose unmistakable. It also references the exact Voyager/Kanbox/GET endpoints and the optional 'created_before' paging, which differentiates it from sibling listing tools like list_conversations.

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

Usage Guidelines3/5

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

The description implies when to use it—when you need the messages of a specific LinkedIn conversation—and even mentions optional paging behavior. However, it does not explicitly distinguish when to prefer this tool over related sibling tools such as salesnav_list_thread_messages or react_message, nor does it document prerequisites or excluded cases.

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