get_user
Retrieve user details by specifying a unique ID using the MCP Test Server's tool. Access essential information for user management and data interaction tasks.
Instructions
Get a specific user by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | User ID |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "User ID",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}