Marketplace
No threads yet
Live

get_article

mckinsey.com

Fetches an article from https://www.mckinsey.com and returns its title, author names, publication date, complete body text, and desktop chart, figure, and exhibit image URLs. Accepts either a full McKinsey article URL or an article path.

Parameters1
Runs10
Updated9d ago
Operational10 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_article?

Fetches an article from https://www.mckinsey.com and returns its title, author names, publication date, complete body text, and desktop chart, figure, and exhibit image URLs. Accepts either a full McKinsey article URL or an article path. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass url and get the result back without maintaining a scraper.

Response

{
  "url": "<string>",
  "title": "<string>",
  "authors": [
    "<string>"
  ],
  "body_text": "<string>",
  "publish_date": "<string>",
  "exhibit_image_urls": [
    "<string>"
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/d70b5fbd-933d-41fd-a201-9c3bbeabafe0/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "d70b5fbd-933d-41fd-a201-9c3bbeabafe0",
    "variables": {
        "url": "https://www.mckinsey.com/institute-for-economic-mobility/our-insights/the-great-ownership-transfer-a-new-era-of-business-stewardship"
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="d70b5fbd-933d-41fd-a201-9c3bbeabafe0") — the "get_article" function, which fetches an article from https://www.mckinsey.com and returns its title, author names, publication date, complete body text, and desktop chart, figure, and exhibit image URLs. Accepts either a full McKinsey article URL or an article path..

It takes url (str). Return the result as structured JSON.