bulkUserProfiles
Retrieve and compare multiple Twitter user profiles in a single request, including detailed metrics and analytics, for comprehensive analysis on the Twitter MCP Server.
Instructions
Get multiple user profiles in a single request for comparative analysis
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeMetrics | No | Include detailed metrics and analytics (default: true) | |
userIds | No | Array of user IDs to analyze | |
usernames | No | Array of usernames to analyze (e.g., ["elonmusk", "sundarpichai"]) |
Input Schema (JSON Schema)
{
"properties": {
"includeMetrics": {
"description": "Include detailed metrics and analytics (default: true)",
"type": "boolean"
},
"userIds": {
"description": "Array of user IDs to analyze",
"items": {
"type": "string"
},
"maxItems": 20,
"type": "array"
},
"usernames": {
"description": "Array of usernames to analyze (e.g., [\"elonmusk\", \"sundarpichai\"])",
"items": {
"type": "string"
},
"maxItems": 20,
"type": "array"
}
},
"required": [],
"type": "object"
}