get_users_by_project_id
Retrieve all users associated with a specific project ID using the MCP service integrated with Mantis Bug Tracker for efficient user data management and analysis.
Instructions
獲取指定專案的所有用戶
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectId | Yes | 專案 ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"projectId": {
"description": "專案 ID",
"type": "number"
}
},
"required": [
"projectId"
],
"type": "object"
}