list_articles
hsprepsports.comLists the current HS PrepSports blog articles from https://hsprepsports.com, optionally filtered by sport category. Returns the article cards and their available metadata from the site's single current listing page.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_articles?
Lists the current HS PrepSports blog articles from https://hsprepsports.com, optionally filtered by sport category. Returns the article cards and their available metadata from the site's single current listing page. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass sport and get the result back without maintaining a scraper.
Response
{
"count": 0,
"source": "<string>",
"articles": [
{}
],
"page_url": "<string>",
"sport_filter": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/3f528172-8859-472b-968a-578ea56800f0/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "3f528172-8859-472b-968a-578ea56800f0",
"variables": {
"sport": ""
}
}'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="3f528172-8859-472b-968a-578ea56800f0") — the "list_articles" function, which lists the current HS PrepSports blog articles from https://hsprepsports.com, optionally filtered by sport category. Returns the article cards and their available metadata from the site's single current listing page.. It takes sport (str). Return the result as structured JSON.