get_user_profile_context
Retrieve a Twitter user's complete profile including bio, metrics, pinned tweet, and recent posts to evaluate credibility and decide on engagement actions.
Instructions
Fetches a comprehensive Twitter/X user profile including bio, profile metadata, public metrics (followers, following, tweet count), the pinned tweet (if set), and the 5 most recent original tweets. Use this tool when the LLM needs to understand who a user is before engaging with them—for example, checking credibility, reading their bio, reviewing their recent activity, or deciding whether to reply, retweet, or quote. Input is the @username (without the @ symbol). Returns a rich combined JSON object with all profile context in one call.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| username | Yes | The Twitter/X username (handle) to look up. Do NOT include the @ symbol. Example: "elonmusk", "twitter". The username is case-insensitive and will be resolved to the canonical Twitter user profile. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| status | Yes | Indicates the outcome of the operation: "success" or "error". | |
| message | Yes | A human-readable summary of the result. | |
| data | Yes | Container holding the user profile data, bio, metrics, pinned tweet, and recent tweets. |