search_gitee_repositories
gitee.comSearches repositories on https://gitee.com using the site's repository search API and returns paginated repository records with full non-empty metadata. Supports keyword search with optional filters and includes a fallback to user repositories when search results are unavailable.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_gitee_repositories?
Searches repositories on https://gitee.com using the site's repository search API and returns paginated repository records with full non-empty metadata. Supports keyword search with optional filters and includes a fallback to user repositories when search results are unavailable. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, name, page, per_page, owner, include_forks, language, sort, order, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"items": [
{}
],
"total_page": 0,
"total_count": 0,
"next_page_url": "<string>",
"prev_page_url": "<string>",
"used_fallback": true
}Call it
curl --location 'https://us-prod.notte.cc/functions/d394887a-598c-41b1-b34d-e4e7ac2cbcf0/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "d394887a-598c-41b1-b34d-e4e7ac2cbcf0",
"variables": {
"query": "mindspore",
"name": "",
"page": 1,
"per_page": 20,
"owner": "zhunaipan",
"include_forks": false,
"language": "",
"sort": "stars_count",
"order": "desc",
"timeout_seconds": 20
}
}'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="d394887a-598c-41b1-b34d-e4e7ac2cbcf0") — the "search_gitee_repositories" function, which searches repositories on https://gitee.com using the site's repository search API and returns paginated repository records with full non-empty metadata. Supports keyword search with optional filters and includes a fallback to user repositories when search results are unavailable.. It takes query (str), name (str), page (int), per_page (int), owner (str), include_forks (bool), language (str), sort (str), order (str), timeout_seconds (int). Return the result as structured JSON.