linkedin_ads_list_creatives
List LinkedIn Creatives
LinkedinDescription
List LinkedIn Creatives (ads) for an ad account. IMPORTANT: Always explicitly pass resolve_content=true when the user asks about ad copy, headlines, body text, URLs, or creative details — do not omit it and rely on the default. Only set resolve_content=false when the user needs metadata-only and has NOT asked about content.
Read-onlyIdempotentOpen-world
Usage
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "linkedin_ads_list_creatives",
"arguments": {
"account_id": "123456789",
"reason": "User wants to see ads"
}
}
}
hopkin linkedin creatives list
| Flag | Type | Required | Description |
|---|---|---|---|
--account | string | Required | Ad account ID (numeric, without URN prefix). |
--campaign-ids | array | Optional | Filter by campaign IDs (numeric). |
--status | array | Optional | Filter by intended status. Defaults to [ACTIVE, PAUSED, DRAFT]. |
--resolve-content | boolean | Optional | Resolve ad copy (headline, body text, destination URL) from linked posts/shares. Default: true. Set to false only when you need metadata-only (IDs, status, content type) and explicitly do NOT need ad copy. |
--creative-id | string | Optional | Fetch a single creative by URN or numeric ID. |
--creative-ids | array | Optional | Fetch specific creatives by numeric IDs (batch filter). |
--limit | integer | Optional | |
--cursor | string | Optional | |
--refresh | boolean | Optional |
{
"mcpServers": {
"linkedin-ads": {
"url": "https://mcp.hopkin.ai/linkedin-ads/mcp",
"transport": "sse"
}
}
}
- List active creatives
- By campaign
- With content resolved
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
account_id |
string |
Required | Ad account ID (numeric, without URN prefix).minLength: 1 |
reason |
string |
Required | Why this tool call is neededminLength: 1, maxLength: 500 |
Optional parameters (8)
| Name | Type | Required | Description |
|---|---|---|---|
campaign_ids |
array |
Optional | Filter by campaign IDs (numeric). |
status |
array |
Optional | Filter by intended status. Defaults to [ACTIVE, PAUSED, DRAFT]. |
resolve_content |
boolean |
Optional | Resolve ad copy (headline, body text, destination URL) from linked posts/shares. Default: true. Set to false only when you need metadata-only (IDs, status, content type) and explicitly do NOT need ad copy. |
creative_id |
string |
Optional | Fetch a single creative by URN or numeric ID. |
creative_ids |
array |
Optional | Fetch specific creatives by numeric IDs (batch filter). |
limit |
integer |
Optional | min: 1, max: 100 |
cursor |
string |
Optional | |
refresh |
boolean |
Optional |
Examples
List active creatives
{
"account_id": "123456789",
"reason": "User wants to see ads"
}
hopkin linkedin creatives list --account 123456789
By campaign
{
"account_id": "123456789",
"campaign_ids": [
"654321"
],
"reason": "Show creatives for a specific campaign"
}
hopkin linkedin creatives list --account 123456789 --campaign-ids 654321
With content resolved
{
"account_id": "123456789",
"resolve_content": true,
"reason": "Show ad copy and headline text"
}
hopkin linkedin creatives list --account 123456789 --resolve-content true