LinkedIn Ads MCP Server
Builds matched LinkedIn audiences from Salesforce data via SOQL queries, enabling targeted campaigns based on CRM segments.
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 Ads MCP ServerCreate a draft text ad for my new service targeting CTOs in the tech industry."
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.
Liam
Liam is an ad manager for LinkedIn (LinkedIn Ad Manager). Create campaigns by talking to Claude (MCP) or from a CLI. Built for go-to-market teams who want to spin up many campaigns from a contact list and a brief, then add creative images themselves. Everything is created as a draft, so nothing spends until you explicitly activate it in Campaign Manager.
Unofficial and not affiliated with or endorsed by LinkedIn.
Covers creation, matched audiences (including building one straight from Salesforce), conversion selection, and performance reporting/insights. See ROADMAP.md for what's shipped and what's planned next.
Hierarchy mapping (LinkedIn differs from Google/Meta)
Common term | LinkedIn entity | Holds |
Campaign | Campaign Group | status, total/shared budget |
Ad group | Campaign | targeting, budget, bid, schedule, format |
Ad | Creative | the rendered ad ( |
Audience | DMP Segment | attached to a Campaign's targeting |
Related MCP server: linkedin-campaign-manager-mcp
Packages
@liads/core— LinkedIn REST client, OAuth, resource modules, CSV + SHA256 hashing, Salesforce reader.@liads/mcp— MCP server (stdio for local; reused by the hosted app). Primary interface.@liads/cli— theliamCLI over the same core, for scripted batch runs.@liads/web— Next.js app that hosts the MCP over HTTP on Vercel.
Prerequisites (everyone needs their own LinkedIn app)
Create a developer app at https://www.linkedin.com/developers/apps and request the Advertising API product. (The Audiences product, needed for CSV audience upload, is requested separately.)
Add an OAuth redirect URL of
http://localhost:53682/callbackfor local login.
Option A — Run locally (self-host, free)
pnpm install
pnpm -r build
# App credentials (alternatively set LIADS_CLIENT_ID / LIADS_CLIENT_SECRET env vars)
mkdir -p ~/.liads
echo '{ "clientId": "...", "clientSecret": "...", "linkedinVersion": "202605" }' > ~/.liads/config.json
node packages/cli/dist/index.js auth login # opens browser, stores tokens in ~/.liads
node packages/cli/dist/index.js accounts list # verify
node packages/cli/dist/index.js launch --brief examples/brief.jsonRegister the local MCP server with Claude (Desktop / Code):
{
"mcpServers": {
"liam": { "command": "node", "args": ["/abs/path/linkedin-ads/packages/mcp/dist/index.js"] }
}
}Option B — Host the MCP on Vercel (single-tenant, for you)
Get your env values locally:
node packages/cli/dist/index.js auth export.Deploy
apps/webto Vercel (set the project Root Directory toapps/web).In Vercel project settings, add the env vars from
.env.example(LIADS_CLIENT_ID,LIADS_CLIENT_SECRET,LIADS_REFRESH_TOKEN,LIADS_LINKEDIN_VERSION, and a strongMCP_AUTH_TOKEN).Your MCP endpoint is
https://<your-app>.vercel.app/api/mcp.
Connect Claude to the remote server (header carries the secret):
npx mcp-remote https://<your-app>.vercel.app/api/mcp --header "Authorization: Bearer <MCP_AUTH_TOKEN>"Tools (MCP)
Accounts:
list_ad_accountsTargeting:
list_targeting_facets,search_targeting(typeahead a facet for entity URNs),list_facet_entities,estimate_audience(structured spec). Talk in plain language ("VPs of demand gen at SaaS companies in the US") and Liam resolves the facets, estimates reach, then builds the campaign.Audiences:
upload_audience_csv(auto-cleans the CSV: normalizes column names, drops non-matcher columns, hashes emails, converts company domains to website URLs; supports both contact and company lists),audience_from_salesforce(SOQL → matched audience),get_audience_statusConversions:
list_conversions(select an existing insight-tag conversion to track).create_campaignandlaunch_from_briefacceptconversionIdsorconversionName, and fall back todefaultConversionNamefrom config.Campaigns:
create_campaign_group,create_campaign,create_text_ad,create_image_adOrchestrator:
launch_from_brief(audience + group + campaign + draft creatives in one call)Reporting:
performance_summary(account rollup + top/bottom + flags),get_performance(per-entity KPIs at any level),performance_trend(weekly/monthly with deltas). KPIs: CTR, CPC, CPM, CPL, conversion rate, cost per conversion. Levels: campaign_group → campaign → creative.Competitor intel:
inspect_competitor_ads— read any company's ads from the LinkedIn Ad Library (no ad-account access needed). The official Ad Library API (GET /rest/adLibrary, requires the "LinkedIn Ad Library" product grant) returns structured metadata — advertiser, payer, format, and for EU-served ads run dates, impression ranges, per-country split, and targeting facets — but no creative. A Playwright scraper of the public library supplies the ad copy/image. Engines (engine):api(metadata only, fast, works hosted),scraper(copy via browser, local, supports company-id), andauto(default — API metadata + copy layered from each ad's detail page, falling back to the scraper if the API isn't provisioned). Search byadvertisername orkeyword(the API has no company-id or date filter). CLI:liam competitor ads.Change journal & lift:
log_ad_change(record a change),list_ad_changes,compute_lift(before-vs-after performance for each recorded change). Liam auto-journals every change it makes; see Change journal & lift below.
Targeting spec
Structured targeting uses short facet names mapped to entity URNs (resolve URNs with
search_targeting). URNs within a facet are ORed; facets are ANDed; excluded facets are ORed.
{ "include": { "locations": ["urn:li:geo:103644278"], "seniorities": ["urn:li:seniority:7"], "titles": ["urn:li:title:26587"] },
"exclude": { "industries": ["urn:li:industry:47"] } }CLI reference
All commands also work via node packages/cli/dist/index.js <cmd>.
liam auth login # OAuth, stores tokens in ~/.liads
liam auth export # print env vars for the hosted (Vercel) server
liam accounts list # list accessible ad accounts
liam targeting search <facet> <query> # typeahead a facet for entity URNs
liam targeting estimate <facet> <urns…> # audience size for one facet's URNs
liam audience upload -n <name> -f <csv> # clean + upload a CSV as a matched audience
liam audience upload -n <name> -f <csv> --dry-run # preview the cleaned CSV, no upload
liam audience from-salesforce -n <name> -q "<SOQL>" # Salesforce query -> matched audience
liam audience status <segmentId> # matching status + resolved size
liam conversions list # account conversions (pick one to track)
liam report summary [-p <period>] # account rollup: totals, top performers, flags
liam report perf <level> [--parent <id>] # per-entity KPI rows
liam report trend <level> <id> [-b weekly|monthly] # trend with deltas
liam launch --brief <brief.json> # audience + group + campaign + draft creatives
liam changelog list [-t <type>] [-i <id>] # recorded ad changes, newest first
liam changelog add -t <type> -i <id> -f <field> --after <v> [-l <label>] # log a change made elsewhere
liam lift <level> <id> [-w <days>] # before-vs-after performance for each recorded changePeriods: last_7_days, last_30_days, last_90_days, month_to_date, last_month.
--account defaults to defaultAccountId from config where applicable.
Change journal & lift
Liam keeps an append-only journal of every change made to an ad entity so you can measure the lift of a change: how performance differed in the window before it versus after.
Where it lives:
~/.liads/changelog.jsonl(one JSON object per line). It's a plain local file — no database, no account, no setup. Override the path withLIADS_CHANGELOG_PATH.Auto-capture: every create/update Liam makes to a campaign group, campaign, or creative is journaled automatically (captured at the one HTTP chokepoint, so it can't be forgotten).
Manual entries: log changes made outside Liam (e.g. in Campaign Manager), or attach a hypothesis, with
liam changelog add/ thelog_ad_changetool. Use-l/--labelto name the test (e.g."outcome-led headline test") and--tagsto group related changes.Lift:
liam lift <level> <entityId>(orcompute_lift) reads the journal for that entity and, for each change, compares the--windowdays before (default 14) against the same window after, reporting before/after KPIs and per-metric deltas (CTR, CPC, conversion rate, cost-per-conversion, …). Recent changes get a clamped,partialafter-window.
This is a directional pre/post comparison, not a controlled experiment — it's confounded by
seasonality, the LinkedIn learning phase after an edit, and any concurrent budget change. Read the
deltas as a signal, not proof. Set LIADS_NO_CHANGELOG=1 to disable auto-capture; journaling is
also off on hosted deploys (read-only filesystem).
Configuration
Local config lives in ~/.liads/config.json (mode 0600, never in the repo):
Field | Purpose |
| LinkedIn app credentials (or |
| Pinned API version, e.g. |
| Ad account used when a command/brief omits one |
| Conversion auto-selected for new campaigns when none is given |
| Bearer secret for the hosted MCP endpoint |
Hosted equivalents are the LIADS_* env vars plus MCP_AUTH_TOKEN (see .env.example).
OAuth tokens are stored separately in ~/.liads/credentials.json.
Salesforce integration
Liam reads Salesforce by shelling out to the authenticated sf CLI (sf data query), so it
reuses your existing login and needs no new credentials. audience_from_salesforce (and
liam audience from-salesforce) take a SOQL query that selects an email column and turn the
result into a matched audience, closing the loop from "accounts flagged in Salesforce" to
"LinkedIn targeting." Example:
liam audience from-salesforce -n "Q3 target accounts" \
-q "SELECT Email FROM Contact WHERE Account.Target_List__c = true AND Email != null"Safety
Every campaign/creative is created DRAFT/PAUSED. Activation is a separate, explicit step.
Matched-audience matching takes up to 48h, and a campaign needs ~300 matched members to serve.
LinkedIn does not expose person-level ad-view data; cross-referencing is account/segment-level.
Secrets never enter the repo. Local:
~/.liads. Hosted: Vercel env vars.
License
MIT
This server cannot be installed
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/stan-default/liam'
If you have feedback or need assistance with the MCP directory API, please join our Discord server