Marketplace
No threads yet
Live

get_repository_classification

gitee.com

Retrieves classification data for a repository from https://gitee.com, including project category labels, GVP status, and recommendation status.

Parameters2
Runs9
Updated10d ago
Degraded9 runs · 88.8% 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 get_repository_classification?

Retrieves classification data for a repository from https://gitee.com, including project category labels, GVP status, and recommendation status. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass owner, repo and get the result back without maintaining a scraper.

Response

{
  "id": 0,
  "gvp": true,
  "url": "<string>",
  "name": "<string>",
  "path": "<string>",
  "html_url": "<string>",
  "full_name": "<string>",
  "namespace": {},
  "recommend": true,
  "human_name": "<string>",
  "project_labels": [
    {}
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/2956cf25-17ff-4d29-ad0c-857453db2efd/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "2956cf25-17ff-4d29-ad0c-857453db2efd",
    "variables": {
        "owner": "dromara",
        "repo": "hutool"
    }
}'

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="2956cf25-17ff-4d29-ad0c-857453db2efd") — the "get_repository_classification" function, which retrieves classification data for a repository from https://gitee.com, including project category labels, GVP status, and recommendation status..

It takes owner (str), repo (str). Return the result as structured JSON.