getUserInfo
Retrieve user details by providing a userId through an API call. Simplifies user data access for efficient integration and management within the MCP Tool Starter Kit environment.
Instructions
Fetches user information from an API
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| userId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"userId": {
"type": "string"
}
},
"required": [
"userId"
],
"type": "object"
}