Marketplace
No threads yet
Live

search_projects

curseforge.com

Searches projects on https://curseforge.com by game slug and project class, returning up to 20 full project records per page with navigation context and result totals.

Parameters6
Runs25
Updated9d ago
Degraded25 runs · 72% 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 search_projects?

Searches projects on https://curseforge.com by game slug and project class, returning up to 20 full project records per page with navigation context and result totals. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass game, class_slug, query, page, page_size, sort_by and get the result back without maintaining a scraper.

Response

{
  "game": "<string>",
  "page": 0,
  "count": 0,
  "query": "<string>",
  "results": [
    {}
  ],
  "page_size": 0,
  "class_slug": "<string>",
  "total_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/6e5b7763-81d9-4c1a-aec5-cc1b482f9707/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "6e5b7763-81d9-4c1a-aec5-cc1b482f9707",
    "variables": {
        "game": "minecraft",
        "class_slug": "mc-mods",
        "query": "jei",
        "page": 1,
        "page_size": 20,
        "sort_by": "relevancy"
    }
}'

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="6e5b7763-81d9-4c1a-aec5-cc1b482f9707") — the "search_projects" function, which searches projects on https://curseforge.com by game slug and project class, returning up to 20 full project records per page with navigation context and result totals..

It takes game (str), class_slug (str), query (str), page (int), page_size (int), sort_by (str). Return the result as structured JSON.