Skip to main content
Glama

LinkedIn MCP Server

Get share posts

getSharePosts
Read-only

Get share posts - Retrieve share posts for the authenticated user or organization

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
countNo
startNo
authorsNo

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 destructiveHint=false, so the agent knows it's a safe read. The description adds the scope (user/org) but offers no other behavioral context like pagination, filtering, or return format.

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

Conciseness4/5

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

The description is short and front-loaded, but it redundantly repeats the title ('Get share posts -') followed by a restatement with added scope. Still, it is efficient and to the point.

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?

The description covers the core purpose and scope, and annotations cover safety. However, with no output schema and no parameter explanations, it is only minimally viable. Missing pagination details and return value structure.

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

Parameters1/5

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

The input schema has three parameters with no descriptions (0% coverage), and the description provides zero information about count, start, or authors. The agent has no way to know the semantics of these parameters from the description or schema.

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 description clearly states the verb ('Retrieve') and resource ('share posts'), and adds scope ('for the authenticated user or organization'). It naturally differentiates from siblings like createSharePost (write) and getPersonProfile (different resource).

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?

It provides clear context for when to use the tool (when needing share posts for the authenticated user or organization) but does not explicitly name alternatives or exclusions. The context is sufficient for basic selection.

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.

TDQS

A3.5/5.0
Disambiguation5/5

Each tool targets a distinct resource and action: creating posts, retrieving profiles, and retrieving posts. There is no overlap, making selection unambiguous for agents.

Naming Consistency5/5

All tool names use a consistent camelCase verb_noun pattern (create, get). The naming is predictable and follows a clear convention throughout.

Tool Count4/5

With 3 tools, the server is minimal but each tool serves a distinct purpose and fits the apparent scope. It is at the lower end of the typical range but not unreasonably thin.

Completeness3/5

The server covers create and read for posts but lacks update or delete operations. Profile coverage only includes fetching, not searching or updating, leaving notable lifecycle gaps.