Get LinkedIn Feed
linkedin_get_feedRetrieve 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
| Name | Required | Description | Default |
|---|---|---|---|
| count | No | Number of feed items to return (max 50) | |
| start | No | Start index for pagination | |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for machine-readable | markdown |