get_publication_article
bcg.comRetrieves a complete publication article from https://www.bcg.com by publication slug. Returns article metadata, authors, publication dates, full body text, key takeaways, and embedded figure or exhibit image URLs.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_publication_article?
Retrieves a complete publication article from https://www.bcg.com by publication slug. Returns article metadata, authors, publication dates, full body text, key takeaways, and embedded figure or exhibit image URLs. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass slug and get the result back without maintaining a scraper.
Response
{
"url": "<string>",
"slug": "<string>",
"title": "<string>",
"authors": [
{}
],
"metadata": {},
"body_text": "<string>",
"publish_date": "<string>",
"key_takeaways": [
"<string>"
],
"embedded_images": [
{}
],
"embedded_image_urls": [
"<string>"
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/c2584333-f788-47b7-ba07-deff2f2a6aa9/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "c2584333-f788-47b7-ba07-deff2f2a6aa9",
"variables": {
"slug": "2026/digital-infrastructure-playbook"
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="c2584333-f788-47b7-ba07-deff2f2a6aa9") — the "get_publication_article" function, which retrieves a complete publication article from https://www.bcg.com by publication slug. Returns article metadata, authors, publication dates, full body text, key takeaways, and embedded figure or exhibit image URLs.. It takes slug (str). Return the result as structured JSON.