Marketplace
No threads yet
Live

extract_guide_chapter_topics

mobafire.com

Extracts a MOBAFire League of Legends build guide's title and complete ordered chapter-topic list from https://www.mobafire.com. Returns the topic count and a ready-to-use Markdown outline.

Parameters1
Runs14
Updated10d ago
Degraded14 runs · 92.8% 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 extract_guide_chapter_topics?

Extracts a MOBAFire League of Legends build guide's title and complete ordered chapter-topic list from https://www.mobafire.com. Returns the topic count and a ready-to-use Markdown outline. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass guide_url and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "title": "<string>",
  "topics": [
    "<string>"
  ],
  "markdown": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/3044c5e4-ad48-4183-9cbc-1364a43459ca/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "3044c5e4-ad48-4183-9cbc-1364a43459ca",
    "variables": {
        "guide_url": "https://www.mobafire.com/league-of-legends/build/26-15-master-khazix-7-5m-points-jungle-guide-557590"
    }
}'

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="3044c5e4-ad48-4183-9cbc-1364a43459ca") — the "extract_guide_chapter_topics" function, which extracts a MOBAFire League of Legends build guide's title and complete ordered chapter-topic list from https://www.mobafire.com. Returns the topic count and a ready-to-use Markdown outline..

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