Skip to main content
Glama
EgiStr

linkedin-mcp

by EgiStr

Get LinkedIn Feed

linkedin_get_feed
Read-onlyIdempotent

Retrieve recent posts and activities from your LinkedIn network feed. Use pagination and choose markdown or JSON output to get the feed updates you need.

Instructions

Get recent activity from the authenticated user's LinkedIn feed.

Returns recent posts and activities from your network.

Args:

  • start (number): Start index for pagination (default: 0)

  • count (number): Number of items to return, max 50 (default: 10)

  • response_format ('markdown' | 'json'): Output format (default: 'markdown')

Returns (JSON format): { "total": number, "count": number, "start": number, "has_more": boolean, "items": [{ "id": string, // Activity URN "actor": string, // Actor URN "time": string, // Human-readable timestamp "timestamp": number,// Unix timestamp ms "content": string // Content preview }] }

Note: LinkedIn's public API has limited feed access.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
countNoNumber of feed items to return (max 50)
startNoStart index for pagination
response_formatNoOutput format: 'markdown' for human-readable or 'json' for machine-readablemarkdown

Schema Changelog

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

  1. First observedv1.0.0

TDQS

A3.8/5.0
Behavior4/5

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

Annotations already carry readOnlyHint, idempotentHint, and destructiveHint=false, so the description mainly adds extra context. It reveals that the feed belongs to the authenticated user, that results are paginated with has_more, and that LinkedIn's public API has limited feed access — useful behavioral nuance beyond the structured annotations.

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 front-loaded with the core purpose and then organized into Args and Returns sections. The Args block duplicates schema information somewhat, but the Returns block is valuable because there is no output schema, and the note about limited API access is non-redundant.

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 tool with full parameter annotations, the description provides everything needed to invoke it correctly: parameter meanings, defaults, output format options, a detailed return structure, and a caveat about API limitations. The absence of an output schema is compensated by the embedded JSON return example.

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 100%, so the input schema already fully documents all three parameters. The description restates start, count, and response_format with defaults and enums, but does not add meaningfully new semantics beyond what the schema provides.

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 names a specific verb and resource: 'Get recent activity from the authenticated user's LinkedIn feed.' It is clear about what the tool returns, but it does not explicitly differentiate itself from the sibling linkedin_list_posts, which could overlap conceptually with feed items.

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 intended usage is implied by the name and description: reading the authenticated user's feed vs. creating or sending LinkedIn content. However, there is no explicit guidance about when to prefer this tool over linkedin_list_posts or other siblings, and no exclusions are stated.

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

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/EgiStr/linkedin-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server