Skip to main content
Glama
vlpmedialtd

linkedin-mcp

by vlpmedialtd

Get likes/comments summary of a post

linkedin_get_post_stats
Read-only

Get like and comment counts for a LinkedIn post by providing its URN, enabling quick engagement analysis.

Instructions

Returns the like and comment summary of a post (socialActions).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
post_urnYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A3.5/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true, so the safety profile is covered. The description adds the specific 'socialActions' detail, which is useful context about what is returned, but it does not disclose pagination, rate limits, or what happens if the post has no likes/comments.

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 sentence with no wasted words. It front-loads the action and resource, and the parenthetical 'socialActions' adds a useful API-level detail without bloating the text.

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

Completeness3/5

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

For a simple read-only tool with one parameter and no output schema, the description is mostly adequate. However, it does not mention what the response structure looks like or whether the summary includes counts, lists, or both, which an agent might need to know for downstream use.

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 0%, so the description must compensate. It does not explain the post_urn parameter beyond the schema's pattern, but the parameter is a single, self-explanatory identifier. The description adds no meaning beyond what the schema provides, so a baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb ('Returns') and resource ('like and comment summary of a post'), and the title reinforces the scope. It is clear enough to distinguish from siblings like linkedin_get_post, though it does not explicitly name the sibling it differs from.

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 usage for retrieving post engagement stats, and the sibling list shows alternatives like linkedin_get_post and linkedin_list_posts. However, it does not explicitly state when to use this tool versus those alternatives, leaving some inference to the agent.

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