Live
list_game_categories
curseforge.comReturns all non-empty category records and reusable category slugs for a game and project class from https://curseforge.com.
Parameters2
Runs7
Updated3d ago
Operational7 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_game_categories?
Returns all non-empty category records and reusable category slugs for a game and project class from https://curseforge.com. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass game, class_slug and get the result back without maintaining a scraper.
Response
{
"game": "<string>",
"count": 0,
"categories": [
{}
],
"class_slug": "<string>",
"class_details": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/50ae2b73-dc28-400f-9024-f05583736316/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "50ae2b73-dc28-400f-9024-f05583736316",
"variables": {
"game": "minecraft",
"class_slug": "mc-mods"
}
}'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="50ae2b73-dc28-400f-9024-f05583736316") — the "list_game_categories" function, which returns all non-empty category records and reusable category slugs for a game and project class from https://curseforge.com.. It takes game (str), class_slug (str). Return the result as structured JSON.