get_user_by_id
Retrieve user details from the X (Twitter) MCP server using a unique user ID, enabling quick access to specific user information.
Instructions
Fetches a user by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
user_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"user_id": {
"title": "User Id",
"type": "string"
}
},
"required": [
"user_id"
],
"type": "object"
}