Skip to main content
Glama
EgiStr

linkedin-mcp

by EgiStr

Get LinkedIn User Info (OpenID Connect)

linkedin_get_user_info
Read-onlyIdempotent

Get basic LinkedIn user profile information like name, email, picture, and locale via OpenID Connect with minimal scopes, ensuring reliable identity verification.

Instructions

Get basic user identity information via OpenID Connect.

This works with the minimal "openid" scope and returns:

  • sub (unique member ID for your app)

  • name, given_name, family_name

  • email (if "email" scope is granted)

  • picture

  • locale

Unlike getMyProfile, this always works even with minimal scopes.

Args:

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

Returns (JSON format): { "sub": string, // Unique member ID "name": string, // Full name "givenName": string, // First name "familyName": string, // Last name "email": string, // Email address "emailVerified": boolean // Whether email is verified "picture": string, // Profile picture URL "locale": string // Locale }

Requires scope: openid (always available with Sign In with LinkedIn)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
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

A4.3/5.0
Behavior4/5

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

The annotations already mark this as read-only, idempotent, and non-destructive. The description adds behavioral context by disclosing the required 'openid' scope, noting that email is only returned if the 'email' scope is granted, and fully documenting the response shape. No contradictions with annotations.

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

Conciseness5/5

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

The description is well-structured and front-loaded: purpose first, then return fields, then sibling differentiation, then parameters/return example/scope. Every section earns its place and the prose is tight with no fluff, even though the JSON return example is somewhat detailed.

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?

Despite having no output schema, the description provides a full JSON return contract, covers the parameter, states the required scope, and clarifies behavior with minimal scopes. An agent has everything needed to invoke the tool correctly and understand what it will receive.

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?

The single parameter is already fully documented with 100% schema coverage, including enum values, default, and a concise description. The description's Args section merely restates this information without adding deeper semantics, so the baseline score of 3 is appropriate.

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 first sentence states a specific action and resource: 'Get basic user identity information via OpenID Connect.' It enumerates exactly which fields are returned and explicitly differentiates from getMyProfile via the minimal-scope guarantee, so an agent can distinguish it from its sibling tools.

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?

The description provides a clear usage context by stating it 'always works even with minimal scopes' and contrasting it with getMyProfile. This tells the agent when to prefer this tool over the likely alternative, though it doesn't explicitly describe when to choose getMyProfile instead.

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