getUserInfo
Retrieve detailed information about a Twitter user by providing their username. Supports data extraction for user profiles on the Twitter MCP Server.
Instructions
Get information about a Twitter user
Input Schema
Name | Required | Description | Default |
---|---|---|---|
username | Yes | The username of the user |
Input Schema (JSON Schema)
{
"properties": {
"username": {
"description": "The username of the user",
"type": "string"
}
},
"required": [
"username"
],
"type": "object"
}