get_user
Retrieve detailed user information from the Redmine MCP Server by providing a user ID. Simplifies user data access for project management and collaboration workflows.
Instructions
取得特定用戶的詳細資訊
Args:
user_id: 用戶 ID
Returns:
用戶的詳細資訊,以易讀格式呈現
Input Schema
Name | Required | Description | Default |
---|---|---|---|
user_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"user_id": {
"title": "User Id",
"type": "integer"
}
},
"required": [
"user_id"
],
"title": "get_userArguments",
"type": "object"
}