Skip to main content
Glama

YouSpot

Get LinkedIn posts

get_my_linkedin_posts
Read-only

The user's own LinkedIn posts with engagement numbers (reactions, likes, comments, shares): newest first by default, their earliest with sort='oldest', or their best-performing with sort='top'. sort='top' is what answers 'my top 10 posts', 'my best posts' and 'what performed well'. Answer those from here rather than from linkedin_analytics, which needs an OAuth grant this user may not have given. The response always includes total_posts_stored, so this also answers 'how many posts do I have?' and 'what was my first post?'. Use it for questions about their posting activity and performance — 'what did I post last week?', 'what's the average number of likes on my last 5 posts?', 'which recent post got the most comments?'. Compute averages and comparisons from the returned rows. like_count is the thumbs-up reaction alone; total_reaction_count is all reaction types combined. Pages: when has_more is true, call again with offset set to the next_offset from the response to continue through their history.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sortNo'newest' (default), 'oldest' for the start of their posting history, or 'top' for the most engagement first (total reactions, then comments, then shares).
limitNoHow many posts to return (default 20, max 200).
offsetNoHow many posts to skip, for paging through more than one call can return (default 0).

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.8/5.0
Behavior5/5

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

Annotations carry only readOnlyHint=true, so the description does the heavy lifting — and it does it thoroughly: response invariants (total_posts_stored always included), pagination contract (has_more → next_offset → offset), field semantics (like_count is thumbs-up alone vs total_reaction_count is all types), and default ordering behavior. No contradiction with readOnlyHint since this is clearly a fetch operation.

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?

Long but information-dense — every sentence earns its place (routing, examples, field meanings, pagination). Slight redundancy in restating sort='top' ('their best-performing with sort=top' then 'sort=top is what answers...') but that repetition serves a routing purpose. Core purpose is front-loaded before alternatives and edge details.

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

Completeness5/5

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

For a read-only list tool with no output schema, the description fully covers the agent contract: row content, engagement field meanings, sort semantics, response invariants (total_posts_stored, has_more, next_offset), and pagination. An agent can select, sort, and page through results without ambiguity; nothing needed for correct invocation is missing.

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 baseline 3 applies. The description adds real value on top: it maps sort='top' to natural-language queries ('my best posts', 'what performed well'), clarifies when sort='oldest' is the right choice (start of posting history), and explains the offset paging contract (call again with offset set to next_offset). This exceeds baseline but the schema already documents the enum and each parameter well.

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 ('The user's own LinkedIn posts') plus what's included (engagement numbers: reactions, likes, comments, shares). Explicitly contrasts itself with the closest sibling, linkedin_analytics, and is clearly distinct from get_my_tweets (platform-specific). An agent can tell exactly what this tool returns and how it differs from similar ones.

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?

Explicitly routes traffic: 'Answer those from here rather than from linkedin_analytics, which needs an OAuth grant this user may not have given.' Gives concrete query phrasings that should be answered here ('my top 10 posts', 'what did I post last week?', 'how many posts do I have?') and instructs the agent to compute averages and comparisons from returned rows. Also states the exclusion condition (OAuth grant) with reasoning.

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.8/5.0
Disambiguation4/5

Most tools are scoped to a distinct resource and action, and descriptions do a good job separating close pairs like search_connections vs ask_about_connections or get_my_linkedin_posts vs linkedin_analytics. However, the multiple deletion tools (delete_graph_object, delete_graph_objects, purge_graph_object) and the several file-reading tools are easy to confuse without reading the descriptions carefully.

Naming Consistency4/5

The vast majority of tools follow a clear verb_noun pattern such as create_, get_, list_, search_, send_, and delete_. A handful of noun-phrase outliers like linkedin_analytics, mutual_connections, top_message_correspondents, and what_needs_attention break the pattern, so it is highly consistent but not perfect.

Tool Count1/5

64 tools is an extreme count, far beyond the typical well-scoped 3-15 tool range and even beyond the 25+ threshold for 'too many'. While the server covers many integrations, this many tools creates a heavy navigation burden and would be better split into focused servers per domain.

Completeness3/5

Core graph/CRM operations and read-side integration coverage are strong, with search, get, list, and create tools across most domains. However, there are notable dead ends: no delete_calendar_event, no tracker management beyond create_tracker, and set_follow_up explicitly lacks a read-back query tool, so some natural user requests cannot be completed through the toolset.