linkedin-sales-nav-mcp
Enables AI assistants to search LinkedIn Sales Navigator contacts and accounts by driving a real logged-in browser and capturing Sales Navigator's own search API responses.
README
<p align="center"> <img src="docs/banner.jpg" width="100%" alt="An AI agent at a laptop, streaming results into a stack of contact records beside a database and a magnifier."> </p>
LinkedIn Sales Navigator MCP Server
MCP server that gives AI assistants (Claude Desktop, Claude Code, any MCP client) access to LinkedIn Sales Navigator contact and account search — by driving a real, logged-in browser on your machine and capturing Sales Navigator's own search API responses.
Why this design (and why not cookie-replay)
The common approach — copy your li_at + JSESSIONID cookies and replay them
as HTTP requests from a server — gets you logged out repeatedly. LinkedIn
scores each session on IP, browser fingerprint, TLS, and the full cookie set;
two replayed cookies from a different machine look like a hijacked session, so
it invalidates them.
This server does the opposite. It keeps a persistent browser profile you log into once, by hand, and then lets that genuine session do the work:
MCP client (Claude) ──stdio/HTTP──> this server ──drives──> your logged-in Chromium ──> Sales Navigator
│
captures the JSON the browser
itself receives (page.on "response")
Every request to LinkedIn originates from the real browser: your IP, your fingerprint, your full cookie jar, browser-generated CSRF/track headers, and the session is refreshed by the browser as normal. Nothing is replayed or reconstructed. That is what keeps you signed in.
We never automate the login itself — typing credentials is a strong bot signal. You sign in manually once; the profile persists.
Tools
| Tool | What it does |
|---|---|
search_contacts |
People/lead search from a Sales Navigator URL. Navigates + paginates in the browser, saves records to SQLite, returns a small progress summary. |
search_accounts |
Company/account search from a Sales Navigator URL. Same, for accounts. |
check_session_status |
Reports whether the browser profile has a live Sales Navigator session (tells you if you need to re-run --login). |
list_queries |
Every saved search with its progress: url_hash, status, last_page, records_count. |
get_results |
Pull a bounded slice (1–200) of a saved query's records into the conversation for analysis. |
export_results |
Write a saved query's records to JSON and/or CSV under the output folder. |
Both search tools take a full Sales Navigator URL (build the search in the
UI, copy it from the address bar) and a pages count (1–10, 25 results each).
Search tools do not return the records
This is deliberate, and it is the thing most likely to surprise you. Records go to SQLite; the tool returns only a status object, so a 250-row scrape doesn't dump 250 rows into the model's context:
{
"url_hash": "a6ca46c9365bce93",
"scraper_type": "contacts",
"status": "paused", // new | in_progress | paused | complete
"new_records_this_call": 25,
"total_records": 25,
"total_available": 11897313,
"pages_fetched": 1,
"last_page": 1,
"next_page": 2, // null once exhausted
"raw_dir": null, // set when include_raw=true
"suggestion": "Saved 25 records so far (through page 1) ..."
}
To get at the data, call get_results (a sample) or export_results (files),
or read the SQLite database directly.
Searches are resumable. The URL is hashed to a url_hash; calling the same
URL again continues from next_page rather than restarting. Sales Navigator
caps any single search at 100 pages (2,500 results) no matter what
total_available reports — to go past that, split the search into narrower
filters and let de-duplication merge the slices.
Setup
uv sync
uv run patchright install chromium # one-time browser download
cp .env.example .env # optional; defaults are fine on your machine
1. Log in once
uv run linkedin-sales-nav-mcp --login
A browser window opens. Sign into LinkedIn, open Sales Navigator, finish any 2FA/checkpoint. The server detects the signed-in session and saves the profile, then exits.
2. Run the server
uv run linkedin-sales-nav-mcp # stdio (for Claude Desktop / Code)
Claude Desktop / Claude Code config
{
"mcpServers": {
"sales-navigator": {
"command": "uv",
"args": ["run", "--directory", "/path/to/linkedin-sales-nav-mcp", "linkedin-sales-nav-mcp"]
}
}
}
No secrets in the config — the session lives in the browser profile.
Environment variables
| Variable | Default | Purpose |
|---|---|---|
USER_DATA_DIR |
~/.linkedin-sales-nav/profile |
Persistent browser profile |
HEADLESS |
false |
false = visible window (safest); true = headless (more detectable) |
CHROME_PATH |
— | Use your own Chrome instead of bundled Chromium |
PROXY_SERVER |
— | Leave empty on your own machine; only for a residential exit node if remote |
NAV_TIMEOUT / CAPTURE_WAIT / LOGIN_TIMEOUT |
60 / 25 / 300 |
Timeouts (s) |
TOOL_TIMEOUT |
600.0 |
Per-tool MCP timeout (s) — must exceed the pacing budget below |
PACING_ENABLED |
true |
Human-like delays between pages (see below) |
PAGE_DELAY_MIN / PAGE_DELAY_MAX |
3.0 / 8.0 |
Random dwell before advancing a page (s) |
LONG_PAUSE_EVERY |
5 |
Take a longer break every N pages (0 disables) |
LONG_PAUSE_MIN / LONG_PAUSE_MAX |
20.0 / 45.0 |
Length of that break (s) |
OUTPUT_DIR |
output |
Where sales_nav.db and exports are written |
TRANSPORT / HOST / PORT / HTTP_PATH |
stdio / 127.0.0.1 / 9000 / /mcp |
Transport |
LOG_LEVEL |
WARNING |
DEBUG, INFO, WARNING, ERROR |
Where the data goes
Everything lands in SQLite at <OUTPUT_DIR>/sales_nav.db (default
output/sales_nav.db, relative to where the server runs). That database is the
source of truth; JSON/CSV exports are generated from it on demand into
<OUTPUT_DIR>/<url_hash>/.
Schema version 2 (PRAGMA user_version = 2):
| Table | Holds |
|---|---|
queries |
One row per search URL: url_hash, status, last_page, total_available, records_count |
leads |
People (34 columns): name parts, member_id, title, company + company_id, industry, location, tenure, open_link, premium, raw_json |
accounts |
Companies (16 columns): company_id, name, industry, headcount range, description, raw_json |
positions |
One row per current position, so a lead holding two concurrent roles gets two rows. Search responses do not carry past employment, so it isn't stored |
badges |
Lead/account highlight badges (shared connections, "recently changed jobs", etc.) |
Two things worth knowing:
raw_jsonis always stored. LinkedIn's internal API is undocumented and shifts over time, so the complete original element is kept on every row. If the normalizer misses a field, it can be recovered later without re-scraping.- Records de-duplicate across runs.
UNIQUE(url_hash, record_key)plusINSERT OR IGNOREmeans resuming, re-running, or overlapping searches never create duplicate rows.
Query it with anything that speaks SQLite:
sqlite3 output/sales_nav.db \
"SELECT full_name, title, company_name FROM leads LIMIT 10;"
Both the database and the export folder contain real personal data. output/
is in .gitignore for that reason — keep it that way.
Pacing
Pages are not fetched back to back. After each page the server dwells for a random 3–8s before clicking "Next", and every ~5 pages (jittered ±1) it takes a 20–45s break instead. Scroll rhythm is varied too — step count, distance, and the gaps between them.
The reason is cadence, not speed: a page load every two seconds, forever, with no breaks, is a machine signature regardless of how genuine the session is. A full 10-page call therefore takes a couple of minutes, most of it spent deliberately idle. That is working as intended.
Tune with PAGE_DELAY_* / LONG_PAUSE_*, or set PACING_ENABLED=false to
disable the delays entirely (not recommended). Raise TOOL_TIMEOUT alongside
any large increase.
This lowers your footprint; it does not make you invisible. Volume is what gets accounts flagged, and no jitter setting changes how many profiles you pulled today. Fetch what you need, spread it out, and use an account you own.
Example agent usage
User: Find heads of engineering at mid-size fintech companies in Berlin.
Agent: builds/obtains a Sales Navigator search URL (paste one, or use a URL-builder skill), then:
search_contacts( search_url="https://www.linkedin.com/sales/search/people?query=(...)", pages=2 )→
{"url_hash": "a6ca...", "new_records_this_call": 50, "total_records": 50, "next_page": 3, "status": "paused", ...}— the 50 records are now in SQLite, not in the reply.Agent: then pulls what it needs for the answer:
get_results(url_or_hash="a6ca...", limit=25) # a sample to reason over export_results(url_or_hash="a6ca...", format="csv") # or a file on disk
Important honesty notes
- Field mapping is best-effort. We capture LinkedIn's internal sales-api
JSON, which is undocumented and changes over time. The normalizer
(
sales_nav_mcp/normalize.py) pulls the fields that have been stable. If one looks empty, you have two ways back to ground truth without re-scraping: theraw_jsoncolumn on every row, orinclude_raw=trueon a search, which writes the complete untouched API responses to<OUTPUT_DIR>/<url_hash>/raw/. Extend the mapper from those. This is the intended maintenance path. - Pagination selectors for the "Next" control can change; the code tries
several fallbacks and stops cleanly if none match. If deep pagination stops
early, update
_NEXT_SELECTORSinsales_nav_mcp/capture.py. - Run it on your own machine. A datacenter/cloud IP re-introduces the logout risk this design exists to avoid.
- Scraping LinkedIn is subject to LinkedIn's Terms of Service. Use an account you own, at conservative rates.
Development
uv run pytest # 63 tests, no browser and no network
Covered: URL validation, JSON normalization against real captured element shapes (with synthetic values), the SQLite store and exports, and pacing — both the delay arithmetic and its wiring into the capture loop, using a fake page and an injected clock so the suite never actually waits.
Not covered: the live browser path. Exercise that by running --login
followed by a real search.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
E2B
Using MCP to run code via e2b.