English

LinkedIn MCP: Options, Risks, and a No-Scrape Alternative

Three ways to give an agent LinkedIn people data — and what each one really costs.

TL;DR: There is no official LinkedIn MCP. If you want an AI agent to work with LinkedIn people data, you have three real options: a community LinkedIn MCP server that drives your own logged-in session (free, but your account carries the risk), the official API (partner-gated, with no people search for third parties), or an agent-native people data layer like the Lessie Skill that searches 100+ live sources without touching your LinkedIn login. Pick by risk tolerance, volume, and whether you need verified contact data.

Search for a LinkedIn MCP and you find a dozen GitHub projects, a few hosted wrappers, and nothing from LinkedIn itself. The demand is easy to explain: agents are now doing real prospecting, recruiting, and market research, and those workflows keep hitting the same wallthe richest professional dataset on the internet sits behind a login and an API that was never opened for people search.

This guide maps the three ways developers actually wire agents to LinkedIn-grade people data in 2026, how each one works under the hood, and the trade-offsincluding the account-risk questions most write-ups skip.

Does LinkedIn Have an Official MCP?

No. As of July 2026, LinkedIn does not publish, endorse, or support any MCP server. Every "LinkedIn MCP server" you can install today is community-built, and the largest projects state plainly in their own documentation that they are not affiliated with LinkedIn or Microsoft.

The gap is structural, not an oversight. LinkedIn's official developer platform has been partner-gated since 2015: meaningful API access requires applying to a partner program as an incorporated company, passing a review that takes weeks, and fitting an approved categoryadvertising tools, applicant tracking systems, learning platforms, marketing integrations. The self-serve endpoints that remain open return only the logged-in member's own profile data. There is no sanctioned endpoint that lets a third-party app search people or pull someone else's profile at scale, and data extraction is a use case LinkedIn's partner program explicitly rejects. An official MCP would have to expose exactly the capability the platform withholdsso it doesn't exist.

Option 1: Community LinkedIn MCP Servers

Is there a Claude MCP for LinkedIn? Yesseveral. Community LinkedIn MCP servers are open-source projects that expose LinkedIn actions as MCP tools Claude or any compatible agent can call. The best-known, stickerdaniel's linkedin-mcp-server, covers profile pages, company pages, job postings, and job search. What they all share is the authentication model: your LinkedIn account is the credential.

Mechanically, these servers work one of two ways. Either you extract your li_at session cookie from a logged-in browser and pass it as an environment variable, or the server opens a browser window, lets you log in (2FA and captcha included), and stores the session locally. From then on, a browser session navigates LinkedIn as you and parses the pages it sees into structured tool results.

For personal, low-volume usepulling a handful of profiles into Claude before a call, checking a company's open roles, researching one prospect at a timethis works, and it's free. The limitations show up the moment you lean on it:

  • Your account is on the line. LinkedIn's User Agreement prohibits scraping and the use of third-party software that automates activity, and its Help Center maintains a prohibited-software policy. Enforcement is real and escalates: temporary restrictions first, permanent ones for repeated patterns. Low-volume personal use lowers the odds; it does not remove them.
  • Sessions expire. The li_at cookie typically lasts about 30 days. When it dies, your agent's LinkedIn access dies with it until you re-extract and reconfigure.
  • Breakage is a feature of the approach. These servers parse LinkedIn's markup. When the DOM or internal endpoints change, tools break until a maintainer patches them.
  • Volume is capped by plausibility. Everything runs at the pace of one logged-in human account. And you only get what a profile page showsno verified email addresses, no cross-source enrichment.

On the legal backdrop, the facts are narrower than either camp claims: in hiQ Labs v. LinkedIn, US courts found that scraping public pages is not "unauthorized access" under the federal CFAAbut LinkedIn ultimately prevailed on breach of contract. Scraping public data is not a crime; it is still a violation of terms you agreed to, enforced against the account you logged in with.

Option 2: The Official API Route

The official API is the fully sanctioned pathstable, documented, and almost never the answer for agent people search. Access requires the partner program: you apply as a company, wait out a multi-week review, and must fit an approved use case such as ads management, ATS integration, or marketing automation.

Even with approval, the capability you probably came for is absent. There is no people-search endpoint for third parties, no bulk profile retrieval, and profile aggregation is among the use cases LinkedIn rejects outright. If your agent's job is "find 50 heads of engineering at Series B companies and get their contact info," the official API has no endpoint for thatno matter how much paperwork you file.

The API route fits when you are building something LinkedIn wants built: posting content on a member's behalf with OAuth consent, syncing jobs from an ATS, managing ad campaigns. For people data, it is a locked door with a very polite sign.

Skip the cookie extraction entirely. The Lessie Skill gives any MCP agent people and company search across 100+ live sourcespublic LinkedIn data includedplus verified emails at 95% accuracy. No LinkedIn login, no session to babysit.
Give your agent people data →

Option 3: An Agent-Native People Data Layer (No Scraping)

The third option reframes the problem: instead of connecting your agent to LinkedIn, you connect it to a people data layer that already aggregates public professional dataLinkedIn includedfrom the provider's side. The Lessie Skill is built for exactly this: it runs in Claude Code, Codex, or any MCP-compatible agent, and searches 100+ live sources server-side, so no cookie, browser session, or LinkedIn account of yours is ever involved.

The toolset maps to the workflows people try to build on scraper servers, plus the parts they can't deliver:

  • find_people natural-language people search across 100+ sources (~1.9s average search).
  • enrich_people verified email addresses at 95% accuracy, the step no profile scrape can provide.
  • review_people agent-side screening of candidates against your criteria.
  • find_organizations / enrich_organization company discovery and firmographics.
  • get_company_job_postings / search_company_news hiring and news signals for timing outreach.
  • web_search / web_fetch general research inside the same skill.

This is the right pick when the workflow is sales prospecting, recruiting sourcing, or research that needs verified contact data at volumethe cases where an agent runs unattended and a personal account can't safely keep up. A community LinkedIn MCP server remains the reasonable choice for occasional personal lookups, when you specifically need your own account's view, or when the budget is zero.

The honest cons: Lessie is a commercial productfree to start, credit-based beyond thatand it requires a Lessie account. It is also people-and-company-data focused: it will not post, comment, or send connection requests for you. If end-to-end outreach is what you're after, see our guide to automated LinkedIn prospecting.

Here is how the three options compare side by side:

Community MCP ServerOfficial APILessie Skill
SetupInstall + extract session cookiePartner application, weeks of reviewOne CLI command
AuthYour li_at cookie (expires ~30 days)OAuth + partner approvalLessie account no LinkedIn login
DataWhat a profile page shows; no emailsMember's own data; no people search100+ sources + verified emails (95%)
Volume & reliabilityOne account's pace; breaks on DOM changesStable, but capability-cappedAgent-scale; ~1.9s average search
RiskAgainst LinkedIn ToS; account restriction possibleNone fully sanctionedNo LinkedIn account involved
CostFree (open source)Access itself is the costFree to start; credits for enrichment

How to Set It Up

The no-scrape path takes about two minutes from terminal to first search. It installs as a skill via the Skills CLI and registers its tools with whatever agent you already run.

  1. 1
    Install the Lessie Skill

    Run npx skills add LessieAI/lessie-skill -y -g. This works in Claude Code, Codex, and any MCP-compatible agentno server to host, no config file to hand-edit.

  2. 2
    Sign in to Lessie

    On first use, the skill walks you through connecting your Lessie account. Free to startno credit card, and no LinkedIn credentials requested at any point.

  3. 3
    Run your first people search

    Ask in plain English: /lessie find heads of talent at Series B fintech companies. The agent calls find_people and returns matched, reviewable profiles in about two seconds.

  4. 4
    Enrich to verified emails

    Tell the agent to enrich your shortlist. enrich_people resolves verified email addresses at 95% accuracyready for your CRM, ATS, or outreach sequence.

If you're new to agent skills, our Claude Skills guide explains how skills differ from raw MCP servers, and the best Claude Skills roundup shows what else is worth installing alongside.

Your agent is one command away from people data. 100+ live sources, verified emails at 95% accuracy, ~1.9-second searchesand your LinkedIn account stays out of the loop entirely. Free to start.
Try Lessie free →

FAQ

What is a LinkedIn MCP?

A LinkedIn MCP is a Model Context Protocol server that exposes LinkedIn data — profiles, companies, job postings — as tools an AI agent like Claude can call. There is no official one: every LinkedIn MCP server available today is community-built and works by automating your own logged-in LinkedIn session. The term also loosely covers agent-native people data layers like the Lessie Skill, which supply the same category of data from independent sources without a LinkedIn login.

Is there a free LinkedIn MCP?

Yes. Community LinkedIn MCP servers are open source and free to run — you pay in setup time, cookie maintenance, and the risk to the LinkedIn account you authenticate with. The Lessie Skill is free to start as well: searches are included on the free tier, and credits apply to enrichment steps like resolving verified email addresses.

Which option is best for recruiting vs. sales?

Both workflows need volume and contact data, which points to an agent-native layer. For recruiting, pairing get_company_job_postings with find_people surfaces candidates around live hiring signals; for sales, find_people plus enrich_people turns an ICP description into verified emails, with company news for timing. A community scraper server fits better for occasional one-at-a-time lookups where your own account’s view is enough.

Will a scraper MCP get my LinkedIn account restricted?

It can. LinkedIn’s User Agreement prohibits scraping and third-party automation software, and enforcement escalates from warnings and temporary restrictions to permanent ones for repeated patterns. Low-volume personal use reduces the odds but does not eliminate them, and high-volume automated activity is exactly what detection systems target. The practical rule: never run a scraper MCP on an account you cannot afford to lose.

How to use LinkedIn MCP with Claude Code?

Two paths. For a community server: install it, extract your li_at session cookie, add it to the server config, and Claude Code can call its tools — until the cookie expires or the markup changes. For the no-scrape path: run npx skills add LessieAI/lessie-skill -y -g, sign in to Lessie, and ask for people or company searches in plain English. See the Skills CLI page for details.

Does LinkedIn have an official MCP?

No. As of July 2026, LinkedIn does not publish or endorse any MCP server. Its official API is partner-gated — open to incorporated companies in approved categories like ads and ATS integrations — and offers no people-search access for third parties. Everything labeled “LinkedIn MCP server” today is an unaffiliated community project running on the user’s own session.

Give Your Agent People Data. Keep Your LinkedIn Account Out of It.

The Lessie Skill turns any MCP agent into a people-search engine: 100+ live sources, verified emails at 95% accuracy, ~1.9-second searches. One command to install. Free to start.

Start for free →

Related Articles