getPersonById
Retrieve specific person details by their ID using the Teamwork MCP server. Simplifies access to individual data within Teamwork projects and tasks.
Instructions
Get a specific person by ID from Teamwork
Input Schema
Name | Required | Description | Default |
---|---|---|---|
personId | Yes | The ID of the person to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"personId": {
"description": "The ID of the person to retrieve",
"type": "integer"
}
},
"required": [
"personId"
],
"type": "object"
}