linkedit-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
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 |
|---|---|
| authenticateA | Authenticate with LinkedIn via OAuth 2.0. Opens a browser window for authorization. Must be called before using any other tool. |
| logoutB | Clear the stored LinkedIn session tokens. |
| get_profileA | Retrieve the authenticated user's LinkedIn profile: name, headline, about/summary, vanity URL, and email. |
| update_headlineA | Update the authenticated user's LinkedIn headline (max 220 characters). |
| update_aboutB | Update the authenticated user's LinkedIn About / summary section (max 2600 characters). |
| get_experienceA | Retrieve all work experience entries from the authenticated user's LinkedIn profile. |
| add_experienceB | Add a new work experience entry to the authenticated user's LinkedIn profile. |
| update_experience | Update an existing work experience entry on the authenticated user's LinkedIn profile. |
| delete_experienceB | Delete a work experience entry from the authenticated user's LinkedIn profile. |
| get_education | Retrieve all education entries from the authenticated user's LinkedIn profile. |
| add_education | Add a new education entry to the authenticated user's LinkedIn profile. |
| update_education | Update an existing education entry on the authenticated user's LinkedIn profile. |
| delete_education | Delete an education entry from the authenticated user's LinkedIn profile. |
| get_skillsA | Retrieve all skills listed on the authenticated user's LinkedIn profile. |
| add_skill | Add a skill to the authenticated user's LinkedIn profile. |
| remove_skillA | Remove a skill from the authenticated user's 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 10 tools
Each tool has a clearly distinct purpose: authentication, profile/skills retrieval, experience CRD, and specific profile updates. No two tools overlap in function.
Most tools follow a consistent verb_noun pattern with underscores (e.g., add_experience). Two tools (authenticate, logout) are single verbs, but this deviation is minor and does not cause confusion.
With 10 tools, the server is well-scoped for managing a LinkedIn profile. Each tool serves a necessary function without redundancy.
Significant gaps exist: there is no update_experience tool (only add and delete) and no add_skill tool (only remove). These omissions limit the ability to fully manage the profile.