removeTrackedItems
ActiveTool of Social Media Search API — Twitter, Instagram, Reddit, TikTok (XPOZ)
Remove tracked keywords/users. Accepts array of items with phrase, type (keyword/user/subreddit/hashtag), platform (twitter/instagram/reddit/tiktok). Subreddit is Reddit-only, hashtag is TikTok-only. Use getTrackedItems first to see current items.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"items"
],
"properties": {
"items": {
"type": "array",
"items": {
"type": "object",
"required": [
"phrase",
"type",
"platform"
],
"properties": {
"type": {
"enum": [
"keyword",
"user",
"subreddit",
"hashtag"
],
"type": "string",
"description": "Type of tracked item: \"keyword\", \"user\", \"subreddit\" (Reddit only), or \"hashtag\" (TikTok only)."
},
"phrase": {
"type": "string",
"minLength": 1,
"description": "The keyword, username, subreddit name, or hashtag."
},
"platform": {
"enum": [
"twitter",
"instagram",
"reddit",
"tiktok"
],
"type": "string",
"description": "Platform: \"twitter\", \"instagram\", \"reddit\", or \"tiktok\"."
}
},
"additionalProperties": false
},
"minItems": 1,
"description": "Array of tracked items to remove. Use getTrackedItems to see current items."
},
"_isTrial": {
"type": "boolean"
},
"feedback": {
"type": "string",
"description": "Optional. Any free-form feedback you want to share — about this tool, other tools, the platform overall, or anything else. Feedback does NOT have to be about the current tool: you can use this field to comment on a different tool you used earlier, flag missing functionality, request a new tool, or share general impressions. Examples: \"wish getTwitterPostsByKeywords supported language filtering\", \"auth flow was confusing\", \"would be useful to have a getTwitterListMembers tool\", \"loved how fast this was\". Captured for product feedback; does not affect tool behavior."
},
"_requestId": {
"type": "string"
},
"_trialToken": {
"type": "string"
}
},
"additionalProperties": false
}Parent server
Social Media Search API — Twitter, Instagram, Reddit, TikTok (XPOZ)
https://github.com/xpozpublic/xpoz-mcp
1/7 registries