LinkedIn MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| LOG_LEVEL | No | Logging verbosity: debug, info, warn, error | info |
| LINKEDIN_CLIENT_ID | No | Your LinkedIn app client ID (required for OAuth flow) | |
| LINKEDIN_ACCESS_TOKEN | No | Use existing LinkedIn access token instead of OAuth flow | |
| LINKEDIN_REDIRECT_URI | No | OAuth callback URL | http://localhost:50001/callback |
| LINKEDIN_CLIENT_SECRET | No | Your LinkedIn app client secret (required for OAuth flow) |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_linkedin_profileA | Get the authenticated user's LinkedIn profile information |
| get_linkedin_postsA | Get the user's recent LinkedIn posts |
| get_linkedin_connectionsB | Get the user's LinkedIn connections |
| share_linkedin_postC | Share a new post on LinkedIn |
| search_linkedin_peopleC | Search for people on LinkedIn |
| add_linkedin_skillB | Add a skill to your LinkedIn profile |
| delete_linkedin_skillC | Delete a skill from your LinkedIn profile |
| add_linkedin_positionB | Add a work position to your LinkedIn profile |
| update_linkedin_positionB | Update an existing position on your LinkedIn profile |
| delete_linkedin_positionA | Delete a position from your LinkedIn profile |
| add_linkedin_educationC | Add education to your LinkedIn profile |
| delete_linkedin_educationC | Delete education from your LinkedIn profile |
| add_linkedin_certificationA | Add a certification to your LinkedIn profile |
| delete_linkedin_certificationA | Delete a certification from your LinkedIn profile |
| add_linkedin_publicationC | Add a publication to your LinkedIn profile |
| delete_linkedin_publicationA | Delete a publication from your LinkedIn profile |
| add_linkedin_languageC | Add a language to your LinkedIn profile |
| delete_linkedin_languageA | Delete a language from your LinkedIn profile |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 18 tools
Each tool targets a distinct action and profile section (e.g., add vs delete for certifications, education, etc.). No two tools have overlapping purposes.
All tools follow a consistent verb_linkedin_noun pattern with snake_case, e.g., add_linkedin_certification. Naming is uniform and predictable.
With 18 tools covering core profile management (add/delete for multiple sections, profile retrieval, connections, posts, search, sharing), the count is well-scoped for a LinkedIn server.
Missing update operations for most profile sections (only position has update) and no delete for posts. Agents may face dead ends when needing to modify certifications or delete shared posts.