get_current_user
Retrieve authenticated user details, including user ID, name, and avatar, using an access token with the Yuque MCP Server integration.
Instructions
获取当前认证用户的信息,包括用户ID、用户名、头像等语雀账号基本信息
Input Schema
Name | Required | Description | Default |
---|---|---|---|
accessToken | No | 用于认证 API 请求的令牌 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"accessToken": {
"description": "用于认证 API 请求的令牌",
"type": "string"
}
},
"type": "object"
}