Skip to main content
Glama

LinkedIn: List comment replies

linkedin_list_comment_replies
Read-onlyIdempotent

List replies under one exact LinkedIn comment. Chain: resolve post -> post.id -> list comments -> comment.id -> replies. Post ID: Exact provider/Unipile post id; LinkedIn commonly uses a preformatted/base64-style post ID. Obtain with: linkedin_search_posts -> result.id; linkedin_list_user_posts -> result.id; instagram_list_user_posts -> result.id Never pass: post text, author user ID, URL unless a resolver tool explicitly accepts it. Comment ID: Exact comment id scoped to the identified post. Obtain with: linkedin_list_post_comments(post_id) -> comment.id; instagram_list_post_comments(post_id) -> comment.id Never pass: comment text, post_id.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
offsetNo
post_idYesExact post ID from post search/list. Post ID: Exact provider/Unipile post id; LinkedIn commonly uses a preformatted/base64-style post ID. Obtain with: linkedin_search_posts -> result.id; linkedin_list_user_posts -> result.id; instagram_list_user_posts -> result.id Never pass: post text, author user ID, URL unless a resolver tool explicitly accepts it.
account_idNoOptional Nilyo connection ID (unipile_account_id from list_connected_accounts). Omit when the user has one account for this provider. When several exist, Nilyo never guesses: list them (display name, identifier, provider user ID), choose the one the user named or ask, and pass its ID here.
comment_idYesExact comment ID from comments of the resolved post. Comment ID: Exact comment id scoped to the identified post. Obtain with: linkedin_list_post_comments(post_id) -> comment.id; instagram_list_post_comments(post_id) -> comment.id Never pass: comment text, post_id.

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 signal a safe read-only, idempotent call. The description adds meaningful behavioral context: the call is strictly scoped to one exact comment, the IDs must be obtained via a resolution chain, and non-ID inputs are rejected. It does not cover pagination or response behavior, but the safety profile is already declared by annotations.

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

Conciseness3/5

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

The description is front-loaded with a clear one-line purpose and uses useful 'Post ID:' and 'Comment ID:' sections. However, those sections duplicate the schema descriptions nearly verbatim, and the inclusion of instagram_list_user_posts and instagram_list_post_comments as sources for a LinkedIn tool is confusing and likely erroneous.

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 4-parameter tool with no output schema, the description plus schema covers the essential invocation path: exact IDs, where to get them, what not to pass, and account disambiguation in the schema's account_id description. It lacks a description of return values and does not explain the optional offset parameter, which is a minor gap since the tool name and first sentence imply a list result.

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?

Schema description coverage is 75%, and the tool description mostly repeats the schema's own guidance for post_id and comment_id rather than adding new parameter-level information. The offset parameter is undocumented in both the schema and the description, and account_id guidance lives only in the schema. The chain clarifies the relationship between parameters but adds little beyond what the schema already provides.

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 opening sentence, 'List replies under one exact LinkedIn comment,' states a specific action and resource. It also distinguishes itself from sibling list tools like linkedin_list_post_comments by scoping the call to a single comment ID and showing the required chain: resolve post -> post.id -> list comments -> comment.id -> replies.

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?

The description gives an explicit chain for obtaining required IDs and names the exact preceding tools (linkedin_search_posts, linkedin_list_post_comments). It also states hard exclusions: 'Never pass: post text, author user ID, URL unless a resolver tool explicitly accepts it.' It does not, however, explicitly contrast this tool with alternatives like social_list_comment_reactions for deciding which operation to call.

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.