get_user
Retrieve user information from Gitee by specifying a username. Use this tool to access user details for repository management or integration purposes.
Instructions
获取 Gitee 用户信息
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| username | Yes | Username | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "username": {
      "description": "Username",
      "type": "string"
    }
  },
  "required": [
    "username"
  ],
  "type": "object"
}