linkedin-profile-manager-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@linkedin-profile-manager-mcpaudit my LinkedIn profile for recruiter visibility"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
linkedin-profile-manager-mcp
Local-first MCP server for managing and improving your personal LinkedIn profile — safely.
This server drafts, audits, compares, and plans profile updates. It deliberately does not automate LinkedIn itself:
❌ No scraping, no headless browsers, no anti-detection tricks
❌ No LinkedIn credentials or session cookies — ever
❌ No auto-clicking "Save" or auto-submitting profile edits
✅ Human-in-the-loop approval (two-step token flow) for anything with a side effect
✅ Official LinkedIn API only, and only for the one thing it actually supports for members: posting (OAuth +
w_member_social), gated behind explicit config + per-post confirmation✅ For everything else (headline, About, experience, skills): generates polished drafts and a manual copy/paste plan with the exact LinkedIn edit URLs
Why no profile-edit automation? LinkedIn's public developer platform has no self-serve API for editing headline/About/experience/skills on personal profiles, and browser automation of those edits violates LinkedIn's User Agreement (§8.2 prohibits bots/scrapers/automation) and risks account restriction. Drafting locally + pasting manually is the only compliant workflow — so that's the workflow this server optimizes.
Why not an existing LinkedIn MCP server?
Before building this, five existing servers were evaluated (July 2026):
Project | Stars | Maintained | Transport | Method | Profile editing |
~2.7k | ✅ active | stdio/HTTP | Browser-session scraping (your logged-in cookie) | ❌ read-only | |
~156 | ⚠️ sporadic | stdio | Patchright (anti-detection Playwright fork) scraping | ❌ read-only | |
~74 | ❌ dead (Mar 2025) | stdio | Unofficial REST + stored credentials | ❌ search/message | |
~38 | ❌ dead (Mar 2025) | SSE | ✅ Official Community Management API (OAuth) | ❌ post only | |
~34 | ✅ active | stdio | Official OAuth/OIDC | ⚠️ advertises 18 profile-edit tools against endpoints LinkedIn doesn't grant to self-serve apps |
Conclusions that shaped this project:
The popular options are scraping-based — they operate your logged-in session with automation LinkedIn's User Agreement prohibits, and some use anti-detection tooling. That's account risk by design.
The official-API options are either unmaintained or claim member profile-edit capabilities the public API doesn't actually offer.
The only compliant, durable design is the one implemented here: you provide the profile data, the server does the intelligence locally, publishing goes through the official API only, and profile edits are prepared for manual application.
Related MCP server: LinkedIn MCP Server
Tools
Tool | Risk level | What it does |
| local-write | Ingest your profile from pasted text, LinkedIn "Save to PDF" text, or JSON. Saved locally. |
| read-only | Scores: recruiter searchability, clarity, credibility, AI/engineering positioning, conversion. |
| draft-only | Headline options (≤220 chars) for Senior Full Stack Engineer, Agentic AI Systems Engineer, AI Automation Consultant, React/Python/PHP Engineer. |
| draft-only | About variants: concise, technical, founder-consultant, recruiter-friendly, ai-forward (≤2600 chars). |
| draft-only | Rewrites bullets: strong verbs, keywords, metric slots. Never invents metrics — you supply |
| read-only | Compares profile vs. target job descriptions; recommends missing keywords + natural placement. |
| draft-only | Step-by-step manual edit plan: field, edit URL, old text, new text, rationale. |
| local-write | Saves the plan as Markdown + JSON under |
| publishes-content ⚠️ | Draft-first. Publishing requires preview→approval-token→confirm AND official OAuth AND |
| opens-browser ⚠️ | Opens a |
Requirements
Node.js ≥ 20
An MCP client (Claude Desktop, Claude Code, MCP Inspector, …)
Install
git clone <your-fork-url> linkedin-profile-manager-mcp
cd linkedin-profile-manager-mcp
npm install
npm run build
npm test # 30 tests
npm run smoke # boots the server on stdio and lists the 10 toolsClaude Desktop setup
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%/Claude/claude_desktop_config.json (Windows):
{
"mcpServers": {
"linkedin-profile-manager": {
"command": "node",
"args": ["/ABSOLUTE/PATH/TO/linkedin-profile-manager-mcp/dist/index.js"]
}
}
}Restart Claude Desktop. The 10 tools appear under the 🔌 icon.
Claude Code setup
claude mcp add linkedin-profile-manager -- node /ABSOLUTE/PATH/TO/linkedin-profile-manager-mcp/dist/index.jsConfiguration (optional)
Config is looked up at $LINKEDIN_MCP_CONFIG, then ./linkedin-mcp.config.json, then ~/.linkedin-profile-manager/config.json:
{
"dataDir": "/Users/you/.linkedin-profile-manager",
"profileSlug": "your-linkedin-slug",
"enableOfficialPosting": false
}The config loader refuses to start if it finds credential-like keys (password, li_at, cookie, …) in the file.
Optional: official posting (OAuth)
Only needed if you want create_linkedin_post to actually publish (instead of just drafting):
Create an app at https://www.linkedin.com/developers/ and add the Share on LinkedIn and Sign In with LinkedIn using OpenID Connect products.
Complete the OAuth 2.0 authorization-code flow to obtain a member access token with scopes
openid profile w_member_social(the LinkedIn token generator tool works for personal use).Provide the token via environment only — never in the config file:
{
"mcpServers": {
"linkedin-profile-manager": {
"command": "node",
"args": ["/ABS/PATH/dist/index.js"],
"env": { "LINKEDIN_ACCESS_TOKEN": "AQV..." }
}
}
}Set
"enableOfficialPosting": truein your config file.Even then, every post requires the two-step preview → approval-token → confirm flow.
Typical workflow
Open your profile → "Save to PDF" (or select-all/copy the page text).
get_profile_snapshotwith the text.audit_profile→ see scores + findings.keyword_gap_analysiswith 1–3 job descriptions you're targeting.generate_headline_variants/rewrite_about_section/rewrite_experience→ pick your favorites.generate_update_planwith the chosen changes → get old/new/rationale per field.export_profile_patch→ keep a local Markdown record.open_edit_pageper section → paste, review, click Save yourself.
Example prompts
"Take this pasted LinkedIn profile and audit it for an Agentic AI Systems Engineer role."
"Generate 5 headline variants for AI Automation Consultant, then compare them against my current headline."
"Here are two job descriptions I want. Run a keyword gap analysis and tell me where to put the missing terms."
"Rewrite my Acme Corp experience bullets. Real metrics: cut deploy time 40min→6min, portal served 40k users."
"Build an update plan for the headline + About changes we agreed on, export it, and open the headline edit page."
"Draft a LinkedIn post about shipping an MCP server. Don't publish — just draft."
Safety notes
ToS compliance: LinkedIn's User Agreement prohibits scraping and automation of the site. This project touches LinkedIn servers only through the official, versioned REST API, and only for posting, and only when you've configured OAuth and confirmed each post.
Approval tokens: every side-effecting call is two-step. The first call returns a preview + single-use token (10-min TTL, payload-hashed). If the content changes between preview and confirm, the action is blocked — the human always sees exactly what will happen.
No secrets on disk: the access token lives in an env var. The config loader rejects files containing credential keys.
.gitignorecovers config and data dirs.Metric honesty:
rewrite_experienceflags bullets that need metrics but never fabricates numbers.Pacing: apply manual edits gradually; consider disabling "Share profile updates with your network" in LinkedIn settings before a big revamp.
Development
npm run dev # run from source (tsx)
npm test # vitest, 30 tests
npm run inspector # MCP Inspector UI against the built serverProject structure
src/
index.ts # MCP server, 10 tool registrations (stdio)
types.ts # Profile domain types + Zod schemas
config.ts # local config, credential-key rejection
keywords.ts # role keyword banks, JD keyword extraction
tools/ # one module per tool (pure, testable)
linkedin/
officialApiClient.ts # ONLY code that talks to LinkedIn (OIDC userinfo + Posts API)
browserOpenOnly.ts # OS-level "open URL" — the only browser interaction
storage/localProfileStore.ts # local snapshots + exports
safety/
approvals.ts # two-step HITL approval tokens
riskLabels.ts # risk taxonomy shown in every tool description
tests/ # vitest suites: snapshot, analysis, safety
scripts/smoke.mjs # stdio boot + tools/list smoke testLicense
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/jcnh74/linkedin-profile-manager-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server