Get LinkedIn Connections
linkedin_get_connectionsList authenticated user's LinkedIn 1st-degree connections with pagination, returning member ID, name, and profile URL. Adjust start and count to page through results.
Instructions
Get the authenticated user's LinkedIn connections.
Lists your 1st-degree connections with pagination support.
Args:
start (number): Start index for pagination (default: 0)
count (number): Number of connections 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, "connections": [{ "id": string, // Member ID "name": string, // Display name "profileUrl": string // LinkedIn profile URL }] }
⚠️ NOTE: Connections API requires LinkedIn Partner Program access. Standard OAuth apps will receive an error message explaining the limitation.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| count | No | Number of connections 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 |