search_users
Search for users by name or login on the Redmine MCP Server. Retrieve a list of matching users with optional limit for results, aiding efficient user management in project systems.
Instructions
搜尋用戶(依姓名或登入名)
Args:
query: 搜尋關鍵字(姓名或登入名)
limit: 最大回傳數量 (預設 10,最大 50)
Returns:
符合搜尋條件的用戶列表
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"title": "Limit",
"type": "integer"
},
"query": {
"title": "Query",
"type": "string"
}
},
"required": [
"query"
],
"title": "search_usersArguments",
"type": "object"
}