social_engagement_velocity_tracker
ActiveTool of gapup-mcp
Tracks hourly social engagement velocity (likes, shares, comments) across Twitter, LinkedIn, and Reddit for CMOs. Inputs include platform handles/subreddits and time range. Outputs engagement metrics, velocity trends, and platform-specific insights. Ideal for real-time marketing performance monitoring and competitive benchmarking. Keywords: social media analytics, engagement tracking, marketing KPIs, CMO dashboard.
Parameters schema
{
"type": "object",
"required": [
"platforms"
],
"properties": {
"async": {
"type": "boolean",
"description": "If true, returns a job_id immediately (<200ms) instead of waiting for the result. Poll the result with job_result(job_id). Use for slow tools to avoid client timeouts."
},
"hours": {
"type": "number",
"default": 24,
"maximum": 72,
"minimum": 1
},
"platforms": {
"type": "array",
"items": {
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"enum": [
"twitter",
"linkedin",
"reddit"
],
"type": "string"
},
"handle": {
"type": "string"
},
"subreddit": {
"type": "string"
}
}
}
}
}
}Parent server
gapup-mcp
https://github.com/getgapup/gapup-mcp-public
2/7 registries