get_user_info
Retrieve user details by providing a user ID. Designed for managing user information within the MCP Boilerplate Server environment.
Instructions
Get user information by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
user_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"user_id": {
"title": "User Id",
"type": "integer"
}
},
"required": [
"user_id"
],
"type": "object"
}