list_user_repositories
gitee.comLists public repositories for a specific user on https://gitee.com and returns paginated repository objects with full non-empty metadata, including stars, forks, language, and timestamps.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_user_repositories?
Lists public repositories for a specific user on https://gitee.com and returns paginated repository objects with full non-empty metadata, including stars, forks, language, and timestamps. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass username, page, per_page, repo_type, sort, direction, 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>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/a6d62226-e382-4bb3-9609-dfc3ae0b6814/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "a6d62226-e382-4bb3-9609-dfc3ae0b6814",
"variables": {
"username": "zhunaipan",
"page": 1,
"per_page": 20,
"repo_type": "all",
"sort": "updated",
"direction": "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="a6d62226-e382-4bb3-9609-dfc3ae0b6814") — the "list_user_repositories" function, which lists public repositories for a specific user on https://gitee.com and returns paginated repository objects with full non-empty metadata, including stars, forks, language, and timestamps.. It takes username (str), page (int), per_page (int), repo_type (str), sort (str), direction (str), timeout_seconds (int). Return the result as structured JSON.