linkedin_ads_render_chart
Render LinkedIn Ads Chart
Linkedin MCP AppDescription
Interactive chart renderer for LinkedIn Ads performance visualization
Usage
This is an MCP App tool — it renders an interactive chart visualization
directly in Claude Desktop. It does not return text or JSON; instead it returns a
resource_link pointing to a bundled React application that renders the chart
client-side using Observable Plot.
To use: fetch data with a reporting or insights tool first, then pass the structured data to this tool. Claude will construct the chart configuration automatically.
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "linkedin_ads_render_chart",
"arguments": {
"reason": "Show campaign spend over time",
"chart": {
"type": "timeseries",
"data": {
"current": [
{
"date": "2026-01-01",
"values": {
"spend": 1000
}
}
]
},
"primaryAxis": {
"field": "spend",
"label": "Spend ($)",
"mark": "bar"
}
}
}
}
}
{
"mcpServers": {
"linkedin-ads": {
"url": "https://linkedin.mcp.hopkin.ai",
"transport": "sse"
}
}
}
Supported Chart Types
Bar Chart
bar
Compare values across categories. Supports horizontal/vertical orientation, grouped bars, and threshold coloring.
Scatter Plot
scatter
Plot relationships between two metrics. Supports bubble sizing by a third metric and categorical coloring.
Time Series
timeseries
Visualize metrics over time with line, bar, or area marks. Supports dual axes, period comparison, and projections.
Funnel Chart
funnel
Show sequential stage-to-stage conversion rates (e.g., impressions to clicks to conversions).
Waterfall Chart
waterfall
Break down how a total is built from positive and negative components.
Choropleth Map
choropleth
Geographic heatmap showing metric intensity by region. Supports country and US state granularity.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
reason |
string |
Required | Brief explanation of why you are rendering this chartminLength: 1, maxLength: 500 |
chart |
object |
Required | Chart configuration. Supported types: bar, scatter, timeseries, funnel, waterfall, choropleth. |