get_project_users
Retrieve users linked to a specific project by providing its ID. Ideal for managing project access and collaboration on the Goodday platform through the MCP server.
Instructions
Get users associated with a specific project.
Args: project_id: The ID of the project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"title": "Project Id",
"type": "string"
}
},
"required": [
"project_id"
],
"title": "get_project_usersArguments",
"type": "object"
}