Skip to main content

An AI agent at a laptop, streaming results into a stack of contact records beside a database and a magnifier.

LinkedIn Sales Navigator MCP Server

MCP Badge

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).

Beyond tools, the server exposes one resource (sales-nav://queries — saved queries and their progress as attachable JSON context) and one prompt (sales_nav_search_workflow — the step-by-step prospecting playbook, for clients that support MCP prompts).

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

From PyPI (no clone needed):

uvx --from linkedin-sales-nav-mcp patchright install chromium  # one-time browser download

Or from source:

git clone https://github.com/nick-choudhary/linkedin-sales-nav-mcp
cd linkedin-sales-nav-mcp
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

uvx linkedin-sales-nav-mcp --login   # PyPI install
# or, from a clone: 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

uvx linkedin-sales-nav-mcp             # stdio, PyPI install
# or, from a clone: uv run linkedin-sales-nav-mcp

Claude Desktop / Claude Code config

PyPI install:

{
  "mcpServers": {
    "sales-navigator": {
      "command": "uvx",
      "args": ["linkedin-sales-nav-mcp"]
    }
  }
}

From a clone:

{
  "mcpServers": {
    "sales-navigator": {
      "command": "uv",
      "args": ["run", "--project", "/path/to/linkedin-sales-nav-mcp", "linkedin-sales-nav-mcp"]
    }
  }
}

No secrets in the config — the session lives in the browser profile.

Use --project, not --directory. Both point uv at the repo, but --directory changes the working directory to it, which would send your exports into the repo instead of the project you are working in. --project leaves the working directory alone, which is what the export layout below expects.

Installing it once, for every project

Pointing each config at a repo path gets tedious. Install the command onto your PATH instead:

uv tool install linkedin-sales-nav-mcp   # from PyPI
# or: uv tool install /path/to/linkedin-sales-nav-mcp   (from a clone)

Then every project's config is just:

{
  "mcpServers": {
    "sales-navigator": {
      "command": "linkedin-sales-nav-mcp"
    }
  }
}

No path, no flags, and nothing to update when you move the repo. Re-run the install with --force after pulling changes to pick them up.

Either way the database is shared and the login carries over, so a new project needs no --login of its own — only its own .mcp.json entry.

One server at a time

Configure it in as many projects as you like, but only run one at once. The browser profile is a persistent Chromium profile and Chromium takes an exclusive lock on it, so a second server starting while the first is live will fail to launch its browser. If you use uv run, the first server also holds the repo's .venv, and a second uv run can fail while trying to sync it.

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)
STATE_DIR ~/.linkedin-sales-nav Where sales_nav.db and raw captures live — follows you between projects
OUTPUT_DIR output Where JSON/CSV exports are written, relative to where the server runs
TRANSPORT / HOST / PORT / HTTP_PATH stdio / 127.0.0.1 / 9000 / /mcp Transport
LOG_LEVEL WARNING DEBUG, INFO, WARNING, ERROR

Where the data goes

Two directories, because the data has two lifetimes.

State lives in <STATE_DIR> (default ~/.linkedin-sales-nav, beside the browser profile): the SQLite database at sales_nav.db plus any raw captures under <url_hash>/raw/. It belongs to your LinkedIn account rather than to any one project, so it is the same database wherever you launch the server from — list_queries shows one history across every folder.

Exports are project artifacts, so they resolve against the working directory. export_results writes JSON/CSV into <OUTPUT_DIR>/<url_hash>/ (default output/<url_hash>/), landing in whichever project you ran the search for. The database stays the source of truth; exports are generated from it on demand.

Upgrading from 1.0. The database used to live in output/sales_nav.db relative to the launch directory. As of 1.1 it is at ~/.linkedin-sales-nav/sales_nav.db and is no longer read from the old path, so an existing output/sales_nav.db will look empty. Either move it (take sales_nav.db, sales_nav.db-wal, sales_nav.db-shm and the <url_hash>/ directories together — the -wal file holds recent writes), delete it and re-run your searches, or set STATE_DIR=./output to keep the old layout.

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_json is 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) plus INSERT OR IGNORE means resuming, re-running, or overlapping searches never create duplicate rows.

Query it with anything that speaks SQLite:

sqlite3 ~/.linkedin-sales-nav/sales_nav.db \
  "SELECT full_name, title, company_name FROM leads LIMIT 10;"

Both the database and the exports contain real personal data. output/ is in .gitignore for that reason — keep it that way. <STATE_DIR> sits outside the repo by default, so it is never a commit risk, but it is the copy worth protecting: it accumulates across every project.

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: the raw_json column on every row, or include_raw=true on a search, which writes the complete untouched API responses to <STATE_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_SELECTORS in sales_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.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

linkedin_sales_nav_mcp-1.2.0.tar.gz (49.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

linkedin_sales_nav_mcp-1.2.0-py3-none-any.whl (49.2 kB view details)

Uploaded Python 3

File details

Details for the file linkedin_sales_nav_mcp-1.2.0.tar.gz.

File metadata

  • Download URL: linkedin_sales_nav_mcp-1.2.0.tar.gz
  • Upload date:
  • Size: 49.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for linkedin_sales_nav_mcp-1.2.0.tar.gz
Algorithm Hash digest
SHA256 8db1e7e4b33ea6a153d3ee2923bea17566fea5b1075d3cc4c6f84b2475810427
MD5 9da12b3e516e74ae3ff9b189e67a9a7c
BLAKE2b-256 036bb16b72c6b95da5a09f3296f7d783b42b671eb3866a02513d0eb98314ef87

See more details on using hashes here.

Provenance

The following attestation bundles were made for linkedin_sales_nav_mcp-1.2.0.tar.gz:

Publisher: publish.yml on nick-choudhary/linkedin-sales-nav-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file linkedin_sales_nav_mcp-1.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for linkedin_sales_nav_mcp-1.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 aaf052e50f0aa9a7bb314b97478a4245fd511d39cb914c0f50b104d54973ff44
MD5 e3cdf2d33e1ce088a40027adb5bc1970
BLAKE2b-256 3568f87aacc706e7248f340d13c9b1f1f168dbce86236d2d87b12a1ca5c128e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for linkedin_sales_nav_mcp-1.2.0-py3-none-any.whl:

Publisher: publish.yml on nick-choudhary/linkedin-sales-nav-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page