get_user_details
Retrieve user details by providing a user ID. This tool is part of the Harvest MCP Server, which integrates with Harvest's time tracking API for managing time entries, projects, clients, and tasks.
Instructions
Retrieve details for a specific user.
Args:
user_id: The ID of the user to retrieve
Input Schema
Name | Required | Description | Default |
---|---|---|---|
user_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"user_id": {
"title": "User Id",
"type": "integer"
}
},
"required": [
"user_id"
],
"title": "get_user_detailsArguments",
"type": "object"
}