alexey-pelykh/lhremote

๐ŸŽฏ Marketing๐ŸŸข Verified Active
0 Views
0 Installs

๐Ÿ“‡ ๐Ÿ  - Open-source CLI and MCP server for LinkedHelper automation โ€” 32 tools for campaign management, messaging, and profile queries via Chrome DevTools Protocol.

Quick Install

One-Click IDE Configuration
claude_desktop_config.json
{
  "mcpServers": {
    "alexey-pelykh-lhremote": {
      "command": "npx",
      "args": [
        "-y",
        "alexey-pelykh-lhremote"
      ]
    }
  }
}
Or

Using an AI coding agent (Claude Code, Cursor, etc.)? Copy a ready-made prompt that tells it to fetch the setup instructions and install this server for you.

Documentation Overview

lhremote: LinkedHelper Automation Toolkit

CI codecov npm version npm downloads GitHub Repo stars License

CLI and MCP server for LinkedHelper automation.

This project is brought to you by Alexey Pelykh.

What It Does

lhremote lets AI assistants (Claude, etc.) control LinkedHelper through the Model Context Protocol. It can:

  • App management โ€” detect, launch, and quit LinkedHelper instances
  • Account & instance control โ€” list accounts, start/stop instances, check status
  • Campaign automation โ€” create, configure, start, stop, and monitor campaigns with full action-chain management
  • People import โ€” import LinkedIn profile URLs into campaign target lists
  • Profile queries โ€” look up and search cached LinkedIn profiles from the local database
  • Messaging โ€” send direct messages, InMails, and connection requests; query messaging history and check for replies
  • LinkedIn engagement โ€” visit profiles, endorse skills, follow/unfollow, like posts, comment, and react
  • Feed & post intelligence โ€” read the LinkedIn feed, search posts, get post details, engagement stats, and engager lists
  • Profile enrichment โ€” extract emails, phones, socials, and company data from LinkedIn profiles
  • LinkedIn search โ€” build search URLs, resolve entity IDs, and query reference data for search filters
  • Budget & throttle monitoring โ€” check daily action limits and LinkedIn throttling status
  • Action discovery โ€” list available LinkedHelper action types with configuration schemas

Quick Start

npm install -g lhremote        # or: npx lhremote --help
lhremote launch-app            # start LinkedHelper with remote debugging
lhremote list-accounts         # find your LinkedIn account ID
lhremote start-instance        # start an instance (auto-selects single account)
lhremote campaign-create --file my-campaign.yaml   # create a campaign
lhremote import-people-from-urls <campaignId> --urls "https://www.linkedin.com/in/..."
lhremote campaign-start <campaignId> --person-ids <id1,id2,...>
lhremote campaign-status <campaignId>              # monitor progress

Pacing: LinkedIn monitors automated activity. See the Rate Limiting guide for recommended settings.

Prerequisites

  • Node.js >= 24
  • LinkedHelper desktop application (requires a paid subscription)

Installation

npm install -g lhremote

Or run directly with npx:

npx lhremote --help

Usage with Claude Desktop

Add to your Claude Desktop configuration (claude_desktop_config.json):

{
    "mcpServers": {
        "lhremote": {
            "command": "npx",
            "args": ["lhremote", "mcp"]
        }
    }
}

Once configured, Claude can use all 68 tools directly. A typical workflow:

  1. find-app โ€” Detect a running LinkedHelper instance (or launch-app to start one)
  2. list-accounts โ€” See available LinkedIn accounts
  3. start-instance โ€” Start an instance for an account
  4. describe-actions โ€” Explore available action types
  5. campaign-create โ€” Create a campaign from YAML/JSON configuration
  6. import-people-from-urls โ€” Import target LinkedIn profiles into the campaign
  7. campaign-start โ€” Run the campaign
  8. campaign-status / campaign-statistics โ€” Monitor progress
  9. query-messages / check-replies โ€” Review messaging results

CLI Usage

The lhremote command provides the same functionality as the MCP server. Every MCP tool has a corresponding CLI command.

App Management

lhremote find-app [--json]
lhremote launch-app
lhremote quit-app

Account & Instance

lhremote list-accounts [--cdp-port <port>] [--json]
lhremote start-instance <accountId> [--cdp-port <port>]
lhremote stop-instance <accountId> [--cdp-port <port>]
lhremote check-status [--cdp-port <port>] [--json]

Campaigns

lhremote campaign-list [--include-archived] [--json]
lhremote campaign-create --file <path> | --yaml <config> | --json-input <config> [--cdp-port <port>] [--json]
lhremote campaign-get <campaignId> [--cdp-port <port>] [--json]
lhremote campaign-export <campaignId> [--format yaml|json] [--output <path>] [--cdp-port <port>]
lhremote campaign-update <campaignId> [--name <name>] [--description <text>] [--clear-description] [--cdp-port <port>] [--json]
lhremote campaign-delete <campaignId> [--cdp-port <port>] [--json]
lhremote campaign-erase <campaignId> [--cdp-port <port>] [--json]
lhremote campaign-start <campaignId> --person-ids <ids> | --person-ids-file <path> [--cdp-port <port>] [--json]
lhremote campaign-stop <campaignId> [--cdp-port <port>] [--json]
lhremote campaign-status <campaignId> [--include-results] [--limit <n>] [--cdp-port <port>] [--json]
lhremote campaign-statistics <campaignId> [--action-id <id>] [--max-errors <n>] [--cdp-port <port>] [--json]
lhremote campaign-retry <campaignId> --person-ids <ids> | --person-ids-file <path> [--cdp-port <port>] [--json]
lhremote campaign-list-people <campaignId> [--action-id <id>] [--status <status>] [--limit <n>] [--offset <n>] [--cdp-port <port>] [--json]

Campaign Actions

lhremote campaign-add-action <campaignId> --name <name> --action-type <type> [--description <text>] [--cool-down <ms>] [--max-results <n>] [--action-settings <json>] [--cdp-port <port>] [--json]
lhremote campaign-remove-action <campaignId> <actionId> [--cdp-port <port>] [--json]
lhremote campaign-update-action <campaignId> <actionId> [--name <name>] [--description <text>] [--clear-description] [--cool-down <ms>] [--max-results <n>] [--action-settings <json>] [--cdp-port <port>] [--json]
lhremote campaign-reorder-actions <campaignId> --action-ids <ids> [--cdp-port <port>] [--json]
lhremote campaign-move-next <campaignId> <actionId> --person-ids <ids> | --person-ids-file <path> [--cdp-port <port>] [--json]

Campaign Targeting

lhremote campaign-exclude-list <campaignId> [--action-id <id>] [--cdp-port <port>] [--json]
lhremote campaign-exclude-add <campaignId> --person-ids <ids> | --person-ids-file <path> [--action-id <id>] [--cdp-port <port>] [--json]
lhremote campaign-exclude-remove <campaignId> --person-ids <ids> | --person-ids-file <path> [--action-id <id>] [--cdp-port <port>] [--json]
lhremote campaign-remove-people <campaignId> --person-ids <ids> | --person-ids-file <path> [--cdp-port <port>] [--json]
lhremote import-people-from-urls <campaignId> --urls <urls> | --urls-file <path> [--cdp-port <port>] [--json]
lhremote collect-people <campaignId> <sourceUrl> [--limit <n>] [--max-pages <n>] [--page-size <n>] [--source-type <type>] [--cdp-port <port>] [--json]

Collections

lhremote list-collections [--json]
lhremote create-collection <name> [--cdp-port <port>] [--json]
lhremote delete-collection <collectionId> [--cdp-port <port>] [--json]
lhremote add-people-to-collection <collectionId> --person-ids <ids> | --person-ids-file <path> [--cdp-port <port>] [--json]
lhremote remove-people-from-collection <collectionId> --person-ids <ids> | --person-ids-file <path> [--cdp-port <port>] [--json]
lhremote import-people-from-collection <collectionId> <campaignId> [--cdp-port <port>] [--json]

Profiles & Messaging

lhremote query-profile --person-id <id> | --public-id <slug> [--include-positions] [--json]
lhremote query-profiles [--query <text>] [--company <name>] [--include-history] [--limit <n>] [--offset <n>] [--json]
lhremote query-profiles-bulk --person-id <id>... | --public-id <slug>... [--include-positions] [--json]
lhremote query-messages [--person-id <id>] [--chat-id <id>] [--search <text>] [--limit <n>] [--offset <n>] [--json]
lhremote check-replies [--since <timestamp>] [--cdp-port <port>] [--json]
lhremote scrape-messaging-history --person-ids <ids> | --person-ids-file <path> [--cdp-port <port>] [--json]

LinkedIn Actions

lhremote visit-profile --person-id <id> | --url <url> [--extract-current-organizations] [--cdp-port <port>] [--json]
lhremote endorse-skills --person-id <id> | --url <url> [--skill-name <name>]... [--limit <n>] [--skip-if-not-endorsable] [--keep-campaign] [--cdp-port <port>] [--json]
lhremote enrich-profile --person-id <id> | --url <url> [--enrich-profile-info] [--enrich-phones] [--enrich-emails] [--enrich-socials] [--enrich-companies] [--keep-campaign] [--cdp-port <port>] [--json]
lhremote follow-person --person-id <id> | --url <url> [--mode <follow|unfollow>] [--skip-if-unfollowable] [--keep-campaign] [--cdp-port <port>] [--json]
lhremote like-person-posts --person-id <id> | --url <url> [--number-of-articles <n>] [--number-of-posts <n>] [--max-age-of-articles <days>] [--max-age-of-posts <days>] [--should-add-comment] [--message-template <json>] [--skip-if-not-liked] [--keep-campaign] [--cdp-port <port>] [--json]
lhremote message-person --person-id <id> | --url <url> --message-template <json> [--subject-template <json>] [--reject-if-replied] [--reject-if-messaged] [--keep-campaign] [--cdp-port <port>] [--json]
lhremote send-invite --person-id <id> | --url <url> [--message-template <json>] [--save-as-lead-sn] [--keep-campaign] [--cdp-port <port>] [--json]
lhremote send-inmail --person-id <id> | --url <url> --message-template <json> [--subject-template <json>] [--reject-if-replied] [--proceed-on-out-of-credits] [--keep-campaign] [--cdp-port <port>] [--json]
lhremote remove-connection --person-id <id> | --url <url> [--keep-campaign] [--cdp-port <port>] [--json]

Feed & Posts

lhremote get-feed [--count <n>] [--cursor <token>] [--cdp-port <port>] [--json]
lhremote get-post <postUrl> [--comment-count <n>] [--cdp-port <port>] [--json]
lhremote get-post-stats <postUrl> [--cdp-port <port>] [--json]
lhremote get-profile-activity <profile> [--count <n>] [--cursor <token>] [--cdp-port <port>] [--json]
lhremote search-posts <query> [--count <n>] [--cursor <n>] [--cdp-port <port>] [--json]
lhremote comment-on-post --url <url> --text <text> [--cdp-port <port>] [--json]
lhremote react-to-post <postUrl> [--type <like|celebrate|support|love|insightful|funny>] [--cdp-port <port>] [--json]
lhremote react-to-comment <postUrl> <commentUrn> [--type <like|celebrate|support|love|insightful|funny>] [--dry-run] [--cdp-port <port>] [--json]

LinkedIn Search & Reference

lhremote build-url <sourceType> [--keywords <keywords>] [--current-company <id>]... [--past-company <id>]... [--geo <id>]... [--industry <id>]... [--school <id>]... [--network <code>]... [--profile-language <code>]... [--service-category <id>]... [--filter <spec>]... [--slug <slug>] [--id <id>] [--json]
lhremote resolve-entity <entityType> <query> [--limit <n>] [--json]
lhremote list-reference-data <dataType> [--json]

Utilities

lhremote describe-actions [--category <category>] [--type <type>] [--json]
lhremote get-errors [--cdp-port <port>] [--json]
lhremote dismiss-errors [--cdp-port <port>] [--json]
lhremote get-action-budget [--cdp-port <port>] [--json]
lhremote get-throttle-status [--cdp-port <port>] [--json]

MCP Tools

Common Parameters

Most tools and CLI commands connect to LinkedHelper via the Chrome DevTools Protocol (CDP). In addition to the tool-specific parameters listed below, all CDP-connected tools accept:

ParameterCLI FlagTypeDefaultDescription
cdpPort--cdp-portnumber9222CDP debugging port
cdpHost--cdp-hoststring127.0.0.1CDP host address
allowRemote--allow-remotebooleanfalseAllow connections to non-loopback addresses

Security warning: Enabling allowRemote permits CDP connections to remote hosts. CDP is an unsandboxed protocol that grants full control over the target browser โ€” equivalent to remote code execution. Only enable this when the network path between your machine and the target host is fully secured (e.g., SSH tunnel, VPN, or trusted LAN).

App Management

find-app

Detect running LinkedHelper application instances and their CDP connection details.

No parameters.

launch-app

Launch the LinkedHelper application with remote debugging enabled.

ParameterTypeRequiredDefaultDescription
cdpPortnumberNoauto-selectCDP port to use
forcebooleanNofalseKill existing LinkedHelper processes before launching

quit-app

Quit the LinkedHelper application.

ParameterTypeRequiredDefaultDescription
cdpPortnumberNo9222CDP port

Account & Instance

list-accounts

List available LinkedHelper accounts. Returns account ID, LinkedIn ID, name, and email for each account.

ParameterTypeRequiredDefaultDescription
cdpPortnumberNo9222CDP port

start-instance

Start a LinkedHelper instance for a LinkedIn account.

ParameterTypeRequiredDefaultDescription
accountIdnumberNoauto-select if single accountAccount ID
cdpPortnumberNo9222CDP port

stop-instance

Stop a running LinkedHelper instance.

ParameterTypeRequiredDefaultDescription
accountIdnumberNoauto-select if single accountAccount ID
cdpPortnumberNo9222CDP port

check-status

Check LinkedHelper connection status, running instances, and database health.

ParameterTypeRequiredDefaultDescription
cdpPortnumberNo9222CDP port

Campaigns

campaign-list

List existing campaigns with summary statistics.

ParameterTypeRequiredDefaultDescription
includeArchivedbooleanNofalseInclude archived campaigns
cdpPortnumberNo9222CDP port

campaign-create

Create a new campaign from YAML or JSON configuration.

ParameterTypeRequiredDefaultDescription
configstringYesโ€”Campaign configuration in YAML or JSON format
formatstringNoyamlConfiguration format (yaml or json)
cdpPortnumberNo9222CDP port

campaign-get

Get detailed campaign information including action chain.

ParameterTypeRequiredDefaultDescription
campaignIdnumberYesโ€”Campaign ID
cdpPortnumberNo9222CDP port

campaign-export

Export campaign configuration as YAML or JSON.

ParameterTypeRequiredDefaultDescription
campaignIdnumberYesโ€”Campaign ID
formatstringNoyamlExport format (yaml or json)
cdpPortnumberNo9222CDP port

campaign-update

Update a campaign's name and/or description.

ParameterTypeRequiredDefaultDescription
campaignIdnumberYesโ€”Campaign ID
namestringNoโ€”New campaign name
descriptionstringNoโ€”New description (empty string to clear)
cdpPortnumberNo9222CDP port

campaign-delete

Delete (archive) a campaign.

ParameterTypeRequiredDefaultDescription
campaignIdnumberYesโ€”Campaign ID
cdpPortnumberNo9222CDP port

campaign-erase

Permanently erase a campaign and all related data from the database. This is irreversible โ€” unlike campaign-delete (which archives), this removes all campaign data permanently.

ParameterTypeRequiredDefaultDescription
campaignIdnumberYesโ€”Campaign ID
cdpPortnumberNo9222CDP port

campaign-start

Start a campaign with specified target persons. Returns immediately (async execution).

ParameterTypeRequiredDefaultDescription
campaignIdnumberYesโ€”Campaign ID
personIdsnumber[]Yesโ€”Person IDs to target
cdpPortnumberNo9222CDP port

campaign-stop

Stop a running campaign.

ParameterTypeRequiredDefaultDescription
campaignIdnumberYesโ€”Campaign ID
cdpPortnumberNo9222CDP port

campaign-status

Check campaign execution status and results.

ParameterTypeRequiredDefaultDescription
campaignIdnumberYesโ€”Campaign ID
includeResultsbooleanNofalseInclude execution results
limitnumberNo20Max results to return
cdpPortnumberNo9222CDP port

campaign-statistics

Get per-action statistics for a campaign.

ParameterTypeRequiredDefaultDescription
campaignIdnumberYesโ€”Campaign ID
actionIdnumberNoโ€”Filter to a specific action
maxErrorsnumberNo5Max top errors per action
cdpPortnumberNo9222CDP port

campaign-retry

Reset specified people for re-run in a campaign.

ParameterTypeRequiredDefaultDescription
campaignIdnumberYesโ€”Campaign ID
personIdsnumber[]Yesโ€”Person IDs to retry
cdpPortnumberNo9222CDP port

Campaign Actions

campaign-add-action

Add a new action to a campaign's action chain. Use describe-actions to explore available action types.

ParameterTypeRequiredDefaultDescription
campaignIdnumberYesโ€”Campaign ID
namestringYesโ€”Display name for the action
actionTypestringYesโ€”Action type (e.g., VisitAndExtract, MessageToPerson)
descriptionstringNoโ€”Action description
coolDownnumberNoโ€”Milliseconds between executions
maxResultsnumberNoโ€”Max results per iteration (-1 for unlimited)
actionSettingsobjectNoโ€”Action-specific settings
cdpPortnumberNo9222CDP port

campaign-remove-action

Remove an action from a campaign's action chain.

ParameterTypeRequiredDefaultDescription
campaignIdnumberYesโ€”Campaign ID
actionIdnumberYesโ€”Action ID to remove
cdpPortnumberNo9222CDP port

campaign-update-action

Update an existing action's configuration in a campaign. Only provided fields are changed.

ParameterTypeRequiredDefaultDescription
campaignIdnumberYesโ€”Campaign ID
actionIdnumberYesโ€”Action ID to update
namestringNoโ€”New display name
descriptionstring | nullNoโ€”New description (null to clear)
coolDownnumberNoโ€”Milliseconds between executions
maxActionResultsPerIterationnumberNoโ€”Max results per iteration (-1 for unlimited)
actionSettingsstringNoโ€”Action-specific settings as JSON (merged with existing)
cdpPortnumberNo9222CDP port

campaign-reorder-actions

Reorder actions in a campaign's action chain.

ParameterTypeRequiredDefaultDescription
campaignIdnumberYesโ€”Campaign ID
actionIdsnumber[]Yesโ€”Action IDs in desired order
cdpPortnumberNo9222CDP port

campaign-move-next

Move people from one action to the next in a campaign.

ParameterTypeRequiredDefaultDescription
campaignIdnumberYesโ€”Campaign ID
actionIdnumberYesโ€”Action ID to move people from
personIdsnumber[]Yesโ€”Person IDs to move
cdpPortnumberNo9222CDP port

Campaign Targeting

campaign-exclude-list

View the exclude list for a campaign or action.

ParameterTypeRequiredDefaultDescription
campaignIdnumberYesโ€”Campaign ID
actionIdnumberNoโ€”Action ID (for action-level list)
cdpPortnumberNo9222CDP port

campaign-exclude-add

Add people to a campaign or action exclude list.

ParameterTypeRequiredDefaultDescription
campaignIdnumberYesโ€”Campaign ID
personIdsnumber[]Yesโ€”Person IDs to exclude
actionIdnumberNoโ€”Action ID (for action-level list)
cdpPortnumberNo9222CDP port

campaign-exclude-remove

Remove people from a campaign or action exclude list.

ParameterTypeRequiredDefaultDescription
campaignIdnumberYesโ€”Campaign ID
personIdsnumber[]Yesโ€”Person IDs to remove from exclude list
actionIdnumberNoโ€”Action ID (for action-level list)
cdpPortnumberNo9222CDP port

campaign-list-people

List people assigned to a campaign with their processing status.

ParameterTypeRequiredDefaultDescription
campaignIdnumberYesโ€”Campaign ID
actionIdnumberNoโ€”Filter to a specific action
statusstringNoโ€”Filter by status (queued, processed, successful, failed)
limitnumberNo20Max results
offsetnumberNo0Pagination offset
cdpPortnumberNo9222CDP port

campaign-remove-people

Remove people from a campaign's target list entirely. This is the inverse of import-people-from-urls.

ParameterTypeRequiredDefaultDescription
campaignIdnumberYesโ€”Campaign ID
personIdsnumber[]Yesโ€”Person IDs to remove
cdpPortnumberNo9222CDP port

import-people-from-urls

Import LinkedIn profile URLs into a campaign action target list. Idempotent โ€” previously imported URLs are skipped.

ParameterTypeRequiredDefaultDescription
campaignIdnumberYesโ€”Campaign ID
urlsstring[]Yesโ€”LinkedIn profile URLs
cdpPortnumberNo9222CDP port

collect-people

Collect people from a LinkedIn page into a campaign. Detects the source type from the URL automatically.

ParameterTypeRequiredDefaultDescription
campaignIdnumberYesโ€”Campaign ID to collect into
sourceUrlstringYesโ€”LinkedIn page URL (search results, company people, group members)
limitnumberNoโ€”Max profiles to collect
maxPagesnumberNoโ€”Max pages to process
pageSizenumberNoโ€”Results per page
sourceTypestringNoโ€”Explicit source type (bypasses URL detection)
cdpPortnumberNo9222CDP port

Collections

list-collections

List all LinkedHelper collections (Lists) with people counts.

ParameterTypeRequiredDefaultDescription
cdpPortnumberNo9222CDP port

create-collection

Create a new named LinkedHelper collection (List).

ParameterTypeRequiredDefaultDescription
namestringYesโ€”Name for the new collection
cdpPortnumberNo9222CDP port

delete-collection

Delete a LinkedHelper collection (List) and all its people associations.

ParameterTypeRequiredDefaultDescription
collectionIdnumberYesโ€”Collection ID to delete
cdpPortnumberNo9222CDP port

add-people-to-collection

Add people to a LinkedHelper collection. Idempotent โ€” adding an already-present person is a no-op.

ParameterTypeRequiredDefaultDescription
collectionIdnumberYesโ€”Collection ID
personIdsnumber[]Yesโ€”Person IDs to add
cdpPortnumberNo9222CDP port

remove-people-from-collection

Remove people from a LinkedHelper collection.

ParameterTypeRequiredDefaultDescription
collectionIdnumberYesโ€”Collection ID
personIdsnumber[]Yesโ€”Person IDs to remove
cdpPortnumberNo9222CDP port

import-people-from-collection

Import all people from a LinkedHelper collection into a campaign. Large sets are automatically chunked.

ParameterTypeRequiredDefaultDescription
collectionIdnumberYesโ€”Collection ID to import from
campaignIdnumberYesโ€”Campaign ID to import into
cdpPortnumberNo9222CDP port

Profiles & Messaging

query-profile

Look up a cached LinkedIn profile from the local database by person ID or public ID.

ParameterTypeRequiredDefaultDescription
personIdnumberNoโ€”Internal person ID
publicIdstringNoโ€”LinkedIn public ID (URL slug)
includePositionsbooleanNofalseInclude full position history (career history)

query-profiles

Search for profiles in the local database with name, headline, or company filters.

ParameterTypeRequiredDefaultDescription
querystringNoโ€”Search name or headline
companystringNoโ€”Filter by company
includeHistorybooleanNofalseAlso search past positions (company history), not just current
limitnumberNo20Max results
offsetnumberNo0Pagination offset

query-profiles-bulk

Look up multiple cached LinkedIn profiles in a single call.

ParameterTypeRequiredDefaultDescription
personIdsnumber[]Noโ€”Look up by internal person IDs
publicIdsstring[]Noโ€”Look up by LinkedIn public IDs (URL slugs)
includePositionsbooleanNofalseInclude full position history

query-messages

Query messaging history from the local database.

ParameterTypeRequiredDefaultDescription
personIdnumberNoโ€”Filter by person ID
chatIdnumberNoโ€”Show specific conversation thread
searchstringNoโ€”Search message text
limitnumberNo20Max results
offsetnumberNo0Pagination offset

check-replies

Check for new message replies from LinkedIn.

ParameterTypeRequiredDefaultDescription
sincestringNoโ€”Only show replies after this ISO timestamp
cdpPortnumberNo9222CDP port

scrape-messaging-history

Scrape messaging history from LinkedIn for specified people into the local database. This is a long-running operation that may take several minutes.

ParameterTypeRequiredDefaultDescription
personIdsnumber[]Yesโ€”Person IDs whose messaging history should be scraped
cdpPortnumberNo9222CDP port

LinkedIn Actions

visit-profile

Visit a LinkedIn profile via LinkedHelper's VisitAndExtract action and return the extracted profile data. Deducts from the daily action budget.

ParameterTypeRequiredDefaultDescription
personIdnumberNoโ€”Internal person ID (provide this or url)
urlstringNoโ€”LinkedIn profile URL (provide this or personId)
extractCurrentOrganizationsbooleanNofalseExtract current company info during visit
cdpPortnumberNo9222CDP port

endorse-skills

Endorse skills on a LinkedIn profile via an ephemeral campaign. Deducts from the daily action budget.

ParameterTypeRequiredDefaultDescription
personIdnumberNoโ€”Internal person ID (provide this or url)
urlstringNoโ€”LinkedIn profile URL (provide this or personId)
skillNamesstring[]Noโ€”Specific skill names to endorse (mutually exclusive with limit)
limitnumberNoโ€”Max number of skills to endorse (mutually exclusive with skillNames)
skipIfNotEndorsablebooleanNotrueSkip if person has no endorsable skills
keepCampaignbooleanNofalseArchive the ephemeral campaign instead of deleting it
cdpPortnumberNo9222CDP port

enrich-profile

Enrich a LinkedIn profile by extracting additional data (emails, phones, socials, company info) via an ephemeral campaign. Deducts from the daily action budget.

ParameterTypeRequiredDefaultDescription
personIdnumberNoโ€”Internal person ID (provide this or url)
urlstringNoโ€”LinkedIn profile URL (provide this or personId)
profileInfoobjectNoโ€”Enrich profile info (shouldEnrich required)
phonesobjectNoโ€”Enrich phone numbers (shouldEnrich required)
emailsobjectNoโ€”Enrich email addresses (shouldEnrich required)
socialsobjectNoโ€”Enrich social profiles (shouldEnrich required)
companiesobjectNoโ€”Enrich company data (shouldEnrich required)
keepCampaignbooleanNofalseArchive the ephemeral campaign instead of deleting it
cdpPortnumberNo9222CDP port

follow-person

Follow or unfollow a LinkedIn profile via an ephemeral campaign. Deducts from the daily action budget.

ParameterTypeRequiredDefaultDescription
personIdnumberNoโ€”Internal person ID (provide this or url)
urlstringNoโ€”LinkedIn profile URL (provide this or personId)
modestringNofollowfollow or unfollow
skipIfUnfollowablebooleanNotrueSkip if person cannot be unfollowed
keepCampaignbooleanNofalseArchive the ephemeral campaign instead of deleting it
cdpPortnumberNo9222CDP port

like-person-posts

Like and optionally comment on posts and articles by a LinkedIn profile via an ephemeral campaign. Deducts from the daily action budget.

ParameterTypeRequiredDefaultDescription
personIdnumberNoโ€”Internal person ID (provide this or url)
urlstringNoโ€”LinkedIn profile URL (provide this or personId)
numberOfArticlesnumberNoโ€”Number of articles to like
numberOfPostsnumberNoโ€”Number of posts to like
maxAgeOfArticlesnumberNoโ€”Maximum age of articles in days
maxAgeOfPostsnumberNoโ€”Maximum age of posts in days
shouldAddCommentbooleanNofalseAlso add a comment to liked posts/articles
messageTemplatestringNoโ€”Comment text template as JSON (required when shouldAddComment is true)
skipIfNotLikedbooleanNotrueSkip if nothing was liked
keepCampaignbooleanNofalseArchive the ephemeral campaign instead of deleting it
cdpPortnumberNo9222CDP port

message-person

Send a direct message to a 1st-degree LinkedIn connection via an ephemeral campaign. Deducts from the daily action budget.

ParameterTypeRequiredDefaultDescription
personIdnumberNoโ€”Internal person ID (provide this or url)
urlstringNoโ€”LinkedIn profile URL (provide this or personId)
messageTemplatestringYesโ€”Message template as JSON
subjectTemplatestringNoโ€”Subject line template as JSON
rejectIfRepliedbooleanNofalseSkip if person already replied
rejectIfMessagedbooleanNofalseSkip if already messaged
keepCampaignbooleanNofalseArchive the ephemeral campaign instead of deleting it
cdpPortnumberNo9222CDP port

send-invite

Send a LinkedIn connection request via an ephemeral campaign. Deducts from the daily action budget.

ParameterTypeRequiredDefaultDescription
personIdnumberNoโ€”Internal person ID (provide this or url)
urlstringNoโ€”LinkedIn profile URL (provide this or personId)
messageTemplatestringNoโ€”Invitation message template as JSON (empty for no message)
saveAsLeadSNbooleanNofalseSave as lead in Sales Navigator
keepCampaignbooleanNofalseArchive the ephemeral campaign instead of deleting it
cdpPortnumberNo9222CDP port

send-inmail

Send an InMail message to a LinkedIn member (no connection required) via an ephemeral campaign. Deducts from the daily action budget.

ParameterTypeRequiredDefaultDescription
personIdnumberNoโ€”Internal person ID (provide this or url)
urlstringNoโ€”LinkedIn profile URL (provide this or personId)
messageTemplatestringYesโ€”InMail body template as JSON
subjectTemplatestringNoโ€”InMail subject line template as JSON
rejectIfRepliedbooleanNofalseSkip if person already replied
proceedOnOutOfCreditsbooleanNofalseContinue even when InMail credits are exhausted
keepCampaignbooleanNofalseArchive the ephemeral campaign instead of deleting it
cdpPortnumberNo9222CDP port

remove-connection

Remove a person from 1st-degree LinkedIn connections (unfriend) via an ephemeral campaign. Deducts from the daily action budget.

ParameterTypeRequiredDefaultDescription
personIdnumberNoโ€”Internal person ID (provide this or url)
urlstringNoโ€”LinkedIn profile URL (provide this or personId)
keepCampaignbooleanNofalseArchive the ephemeral campaign instead of deleting it
cdpPortnumberNo9222CDP port

Feed & Posts

get-feed

Read the LinkedIn home feed. Returns structured post data with cursor-based pagination.

ParameterTypeRequiredDefaultDescription
countnumberNo10Number of posts per page
cursorstringNoโ€”Cursor token from a previous call for the next page
cdpPortnumberNo9222CDP port

get-post

Get detailed data for a single LinkedIn post including its comment thread.

ParameterTypeRequiredDefaultDescription
postUrlstringYesโ€”LinkedIn post URL or URN
commentCountnumberNo100Maximum number of comments to load (0 to skip)
cdpPortnumberNo9222CDP port

get-post-stats

Get engagement statistics for a LinkedIn post: reaction count (broken down by type), comment count, and share count.

ParameterTypeRequiredDefaultDescription
postUrlstringYesโ€”LinkedIn post URL or URN
cdpPortnumberNo9222CDP port

get-post-engagers

List people who engaged with a LinkedIn post (reacted, etc.) with their profile info and engagement type. Supports pagination. MCP tool only โ€” no CLI command.

ParameterTypeRequiredDefaultDescription
postUrlstringYesโ€”LinkedIn post URL or URN
startnumberNo0Pagination offset
countnumberNo20Number of engagers per page
cdpPortnumberNo9222CDP port

get-profile-activity

Get recent posts/activity from a LinkedIn profile with cursor-based pagination.

ParameterTypeRequiredDefaultDescription
profilestringYesโ€”LinkedIn profile public ID or URL
countnumberNo10Number of posts per page
cursorstringNoโ€”Cursor token from a previous call for the next page
cdpPortnumberNo9222CDP port

search-posts

Search LinkedIn for posts by keyword or hashtag. Returns structured post data with cursor-based pagination.

ParameterTypeRequiredDefaultDescription
querystringYesโ€”Search query โ€” keywords or hashtag
countnumberNo10Number of results per page
cursornumberNoโ€”Index-based cursor from a previous call for the next page
cdpPortnumberNo9222CDP port

comment-on-post

Post a comment on a LinkedIn post. Checks action budget before attempting.

ParameterTypeRequiredDefaultDescription
postUrlstringYesโ€”LinkedIn post URL
textstringYesโ€”Comment text to post
cdpPortnumberNo9222CDP port

react-to-post

React to a LinkedIn post with a specific reaction type.

ParameterTypeRequiredDefaultDescription
postUrlstringYesโ€”LinkedIn post URL
reactionTypestringNolikelike, celebrate, support, love, insightful, or funny
cdpPortnumberNo9222CDP port

react-to-comment

React to a specific LinkedIn comment with a specific reaction type. Use this for the organic-engagement pattern of acknowledging a reply (e.g., the post author replied to your comment) without extending the thread. Mirrors react-to-post semantics scoped to one comment via its URN (as returned by get-post's commentUrn field).

ParameterTypeRequiredDefaultDescription
postUrlstringYesโ€”LinkedIn post URL containing the target comment
commentUrnstringYesโ€”Comment URN (e.g. urn:li:comment:(activity:1234567890,9876543210))
reactionTypestringNolikelike, celebrate, support, love, insightful, or funny
dryRunbooleanNofalseWhen true, detects current reaction state without clicking
cdpPortnumberNo9222CDP port

LinkedIn Search & Reference

build-linkedin-url

Build a LinkedIn URL for any supported source type. Supports SearchPage (basic search with faceted filters), SNSearchPage (Sales Navigator), and parameterised templates for company, school, group, and event pages. CLI command: build-url.

ParameterTypeRequiredDefaultDescription
sourceTypestringYesโ€”LinkedIn source type (e.g., SearchPage, SNSearchPage, OrganizationPeople)
keywordsstringNoโ€”Search keywords
currentCompanystring[]Noโ€”Current company IDs (SearchPage)
pastCompanystring[]Noโ€”Past company IDs (SearchPage)
geoUrnstring[]Noโ€”Geographic URN IDs (SearchPage)
industrystring[]Noโ€”Industry IDs (SearchPage)
schoolstring[]Noโ€”School IDs (SearchPage)
networkstring[]Noโ€”Connection degree codes: F, S, O (SearchPage)
profileLanguagestring[]Noโ€”Profile language codes (SearchPage)
serviceCategorystring[]Noโ€”Service category IDs (SearchPage)
filtersobject[]Noโ€”Sales Navigator filters (SNSearchPage) โ€” each with type, values[]
slugstringNoโ€”Company or school slug (OrganizationPeople, Alumni)
idstringNoโ€”Entity ID (Group, Event, SNListPage, etc.)

resolve-linkedin-entity

Resolve human-readable names (company names, locations, schools) to LinkedIn entity IDs via LinkedIn's public typeahead endpoint. No authentication and no running LinkedHelper instance required. CLI command: resolve-entity.

ParameterTypeRequiredDefaultDescription
querystringYesโ€”Search query (e.g., company name, city)
entityTypestringYesโ€”COMPANY, GEO, or SCHOOL

list-linkedin-reference-data

List LinkedIn reference data for finite enumerations (industries, seniority levels, functions, company sizes, connection degrees, profile languages). Use this to discover valid IDs for search filters. CLI command: list-reference-data.

ParameterTypeRequiredDefaultDescription
dataTypestringYesโ€”INDUSTRY, SENIORITY, FUNCTION, COMPANY_SIZE, CONNECTION_DEGREE, or PROFILE_LANGUAGE

Utilities

describe-actions

List available LinkedHelper action types with descriptions and configuration schemas.

ParameterTypeRequiredDefaultDescription
categorystringNoโ€”Filter by category (people, messaging, engagement, crm, workflow)
actionTypestringNoโ€”Get details for a specific action type

get-errors

Query current LinkedHelper UI errors, dialogs, and blocking popups.

ParameterTypeRequiredDefaultDescription
cdpPortnumberNo9222CDP port

dismiss-errors

Dismiss closable error popups in the LinkedHelper instance UI by clicking their close/OK buttons. Recommended after UIBlockedError.

ParameterTypeRequiredDefaultDescription
cdpPortnumberNo9222CDP port

get-action-budget

Get daily action budget showing limit types, thresholds, and today's usage from LH campaigns and CDP-direct actions.

ParameterTypeRequiredDefaultDescription
cdpPortnumberNo9222CDP port

get-throttle-status

Check if LinkedIn is currently throttling the account.

ParameterTypeRequiredDefaultDescription
cdpPortnumberNo9222CDP port

Known Limitations

  • Platform support: LinkedHelper runs on macOS, Windows, and Linux. Binary paths are detected automatically but can be overridden with the LINKEDHELPER_PATH environment variable.
  • Instance startup time: Starting an instance loads LinkedIn, which may take up to 45 seconds.
  • Profile data is cached: query-profile and query-profiles search the local LinkedHelper database. Profiles must have been visited or imported by LinkedHelper to appear in results.
  • Messaging scrape is slow: scrape-messaging-history navigates LinkedIn's messaging UI and can take several minutes depending on conversation volume.
  • Same-machine requirement: lhremote must run on the same machine as LinkedHelper. CDP connections are localhost-only by default (for security), and database access requires direct file system access to the LinkedHelper SQLite database.

Troubleshooting

LinkedHelper is not running

Error: LinkedHelper is not running (no CDP endpoint at port 9222)

Solution: Use launch-app to start LinkedHelper, or start it manually. lhremote communicates with LinkedHelper via the Chrome DevTools Protocol (CDP), which requires the application to be running.

LinkedHelper is unreachable

Error: LinkedHelper processes detected but CDP endpoint is unreachable

Solution: LinkedHelper is running but its CDP port is not responding. This typically means a stale or zombie process. Use launch-app --force to kill stale processes and relaunch, or manually restart LinkedHelper.

Application binary not found

Error: LinkedHelper application binary not found. Set LINKEDHELPER_PATH to override.

Solution: Install LinkedHelper from linkedhelper.com. If installed in a non-standard location, set the LINKEDHELPER_PATH environment variable to the binary path.

No accounts found

Error: No accounts found.

Solution: Open LinkedHelper and configure at least one LinkedIn account before using lhremote.

Multiple accounts found

Error: Multiple accounts found. Specify accountId. Use list-accounts to see available accounts.

Solution: Use list-accounts to see available accounts, then pass the desired accountId to start-instance, stop-instance, or other tools.

No instance running

Error: No LinkedHelper instance is running. Use start-instance first.

Solution: Run start-instance before using campaign or messaging tools. An instance must be running to interact with LinkedIn.

Instance initialization timeout

Error: Instance started but failed to initialize within timeout.

Solution: The instance was started but took too long to finish loading. This can happen on slow connections. Try again; the instance may still be starting in the background. Use check-status to verify.

Database not found

Error: No database found for account

Solution: The LinkedHelper database file is missing for the specified account. Ensure the account has been used at least once in LinkedHelper so that a local database has been created.

Disclaimer

lhremote is an independent project not affiliated with, endorsed by, or officially connected to:

  • LinkedIn or LinkedIn Corporation
  • LinkedHelper or its parent company

LinkedIn is a trademark of LinkedIn Corporation. LinkedHelper is a trademark of its respective owner.

Purpose

This project enables interoperability between automation tools and LinkedHelper, as permitted under DMCA ยง 1201(f). Implementation is based on publicly observable behavior (Chrome DevTools Protocol) without access to protected source code.

What This Project Does NOT Do

  • Circumvent copy protection or licensing
  • Bypass LinkedHelper authentication
  • Enable use without a valid LinkedHelper subscription
  • Provide access to LinkedIn without LinkedHelper

User Responsibility

Use of lhremote requires a valid LinkedHelper subscription and is subject to LinkedHelper's and LinkedIn's terms of service. Users accept all responsibility for compliance.

Ethical Use

This tool is for legitimate productivity. Do NOT use for spam, scraping at scale, or harassment.

License

AGPL-3.0-only โ€” For commercial licensing, contact the maintainer.

Related MCP Servers

acamolese/google-search-console-mcp

๐Ÿ โ˜๏ธ - Google Search Console MCP server: query performance data, inspect URLs, check indexing, and generate brandable HTML SEO audit reports with a 30/60/90-day roadmap. Read-only OAuth scope, installable via uvx mcp-google-search-console.

๐ŸŽฏ Marketing0 views
AdsMCP/tiktok-ads-mcp-server

๐Ÿ โ˜๏ธ - A Model Context Protocol server for TikTok Ads API integration, enabling AI assistants to manage campaigns, analyze performance metrics, handle audiences and creatives with OAuth authentication flow.

๐ŸŽฏ Marketing0 views
Agent-Prod/muze-mcp

๐ŸŽ–๏ธ ๐Ÿ โ˜๏ธ - Run your ecommerce ads from Claude & ChatGPT. Meta, Google, Amazon and Shopify: 150+ tools to read performance, inspect campaigns, research competitor ads, and take confirm-gated writes (pause, budgets, launches) that always stage paused. Hosted; connect via OAuth or an API key at https://backend.muzecmo.com/mcp

๐ŸŽฏ Marketing0 views
AIOProductOS/studio-mcp

๐ŸŽ–๏ธ ๐Ÿ“‡ ๐Ÿ  ๐ŸŽ ๐ŸชŸ ๐Ÿง - Turns your AI host into a product videographer: scripted screen recordings of your own web app with a visible gliding cursor, camera zooms, highlight callouts, captions, and designed scene transitions, plus marketing-grade screenshots; deterministic dark-frame cleanup and MP4/GIF export. Free and fully local. npx -y @aioproductoscom/mcp-studio

๐ŸŽฏ Marketing0 views

Engagement

Views
0
Installs
0
Upvotes
0

Views and upvotes are unique per visitor network (hashed IP). Installs count copy actions.

Status

Health: Active

Recent health check succeeded.

Last checked: 7/28/2026, 10:45:23 AM

Unclaimed listing (imported or pending owner verification). Claim it โ†’
โ˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Claim this listing

Promote this listing

Optional paid placement. Free listings stay free forever.

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.