Skip to main content
The Xpoz MCP server exposes 48 tools across four social media platforms plus tracking and account management. Each tool is read-only and safe to call without side effects (except tracking tools, which modify your tracked items list).

Twitter/X (13 tools)

ToolDescriptionPagination
getTwitterUserGet user profile by ID or usernameNo
getTwitterUsersGet 1-100 user profiles by IDs or usernamesNo
searchTwitterUsersSearch users by name/username (max 10)No
getTwitterUserConnectionsGet followers or followingYes
getTwitterUsersByKeywordsFind users who posted about keywordsYes
getTwitterPostsByIdsGet 1-100 posts by numeric IDsNo
getTwitterPostsByAuthorGet posts by author usernameYes
getTwitterPostsByKeywordsSearch posts by keywordsYes
getTwitterPostRetweetsGet retweets of a specific postYes
getTwitterPostQuotesGet quote posts of a specific postYes
getTwitterPostCommentsGet replies to a specific postYes
getTwitterPostInteractingUsersGet users who interacted with a postYes
countTweetsCount tweets matching a phrase in a date rangeNo

Instagram (9 tools)

ToolDescriptionPagination
getInstagramUserGet user profile by ID or usernameNo
searchInstagramUsersSearch users by name/username (max 10)No
getInstagramUserConnectionsGet followers or followingYes
getInstagramPostInteractingUsersGet users who liked/commented on a postYes
getInstagramUsersByKeywordsFind users who posted about keywordsYes
getInstagramPostsByIdsGet 1-100 posts by strong IDsNo
getInstagramPostsByUserGet posts by user ID or usernameYes
getInstagramPostsByKeywordsSearch posts by keywordsYes
getInstagramCommentsByPostIdGet comments for a postYes

Reddit (9 tools)

ToolDescriptionPagination
getRedditUserGet user profile by usernameNo
searchRedditUsersSearch users by name/username (max 50)No
getRedditUsersByKeywordsFind users who posted about keywordsYes
getRedditPostsByKeywordsSearch posts by keywordsYes
getRedditPostWithCommentsByIdGet a post with its commentsYes
getRedditCommentsByKeywordsSearch comments by keywordsYes
searchRedditSubredditsSearch subreddits by name (max 50)No
getRedditSubredditWithPostsByNameGet subreddit with its postsYes
getRedditSubredditsByKeywordsFind subreddits where keywords appearYes

TikTok (10 tools)

ToolDescriptionPagination
getTiktokUserGet user profile by ID or usernameNo
searchTiktokUsersSearch users by name/username (max 10)No
getTiktokUsersByKeywordsFind users who posted about keywordsYes
getTiktokUsersByHashtagsFind users who posted with specific hashtagsYes
getTiktokPostsByIdsGet 1-100 posts by numeric IDsNo
getTiktokPostsByUserGet posts by user ID or usernameYes
getTiktokPostsByKeywordsSearch posts by keywordsYes
getTiktokPostsByHashtagsSearch posts by hashtagsYes
getTiktokCommentsByPostIdGet comments for a postYes
TikTok is the only platform with hashtag-specific tools (getTiktokUsersByHashtags and getTiktokPostsByHashtags). These search the indexed hashtags column directly for precise matching.

Tracking (3 tools)

ToolDescriptionPagination
getTrackedItemsList all tracked keywords, users, subreddits, and hashtagsNo
addTrackedItemsAdd items to track across platformsNo
removeTrackedItemsRemove tracked itemsNo

Account & Auth (3 tools)

ToolDescriptionPagination
getAccountDetailsGet plan, billing, and usage infoNo
getUserAccessKeyRetrieve your access keyNo
checkAccessKeyStatusCheck access key status without revealing the keyNo

Operations (2 tools)

ToolDescriptionPagination
checkOperationStatusCheck status and retrieve results from a background operationNo
cancelOperationCancel a running background operationNo
For details on how operations work with paginated tools, see Operations.

Common Parameters

Most tools share these optional parameters:
ParameterDescription
fieldsSpecify which fields to return. Dramatically reduces response size and improves performance. See Field Selection.
responseTypeChoose between "fast" (default), "paging", or "csv". See Response Modes.
forceLatestForce the latest available data. Use sparingly — increases latency.
startDate / endDateFilter by date range in YYYY-MM-DD format. Omit by default to retrieve all data.
pageNumber / tableNameFor paginated results. See Pagination.
feedbackFree-form product feedback. Does not affect tool behavior.
Always specify only the fields you need to reduce response size and improve performance. For example, use ["id", "text", "likeCount"] instead of retrieving all fields.