get_client_details
Retrieve comprehensive details for a specific client by providing their unique ID. Essential for managing client-related tasks within the Harvest MCP Server's time tracking and project management system.
Instructions
Get detailed information about a specific client.
Args:
client_id: The ID of the client to retrieve
Input Schema
Name | Required | Description | Default |
---|---|---|---|
client_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"client_id": {
"title": "Client Id",
"type": "integer"
}
},
"required": [
"client_id"
],
"title": "get_client_detailsArguments",
"type": "object"
}