getHashtagAnalytics
Analyze Twitter hashtag performance by extracting engagement metrics and trends within a specified time range using the Twitter MCP Server. Gain insights into hashtag usage and impact.
Instructions
Get analytics for a specific hashtag
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endTime | No | End time for the analysis (ISO 8601) | |
hashtag | Yes | The hashtag to analyze (with or without #) | |
startTime | No | Start time for the analysis (ISO 8601) |
Input Schema (JSON Schema)
{
"properties": {
"endTime": {
"description": "End time for the analysis (ISO 8601)",
"type": "string"
},
"hashtag": {
"description": "The hashtag to analyze (with or without #)",
"type": "string"
},
"startTime": {
"description": "Start time for the analysis (ISO 8601)",
"type": "string"
}
},
"required": [
"hashtag"
],
"type": "object"
}