mcpserver.lol
registry/socialdata
Connection check verified live · 26h ago

socialdata

Twitter (X) API alternative for AI agents: tweet search, profiles, followers. $0.0002 per result.

Tools 14
GitHub stars
Installs / wk
Licence
Transport streamable-http
Last checked 26h ago

Tools & capabilities

14 tools

Read from the running server on 26h ago.

check_is_following read-only source_user_id*target_user_id*
Check whether one Twitter/X user follows another. Far cheaper than fetching a follower list — use this whenever the question is about a specific pair of accounts. Both IDs must be…
get_list_tweets read-only cursorlist_id*
Fetch one page of posts from a Twitter/X list, newest first. A page is large — around 100 posts — plus a next_cursor. Billing is per result, so one call here costs several times a…
get_tweet read-only tweet_id*
Fetch a single Twitter/X post by its numeric ID, including engagement counts. Bills one post request against the caller's balance.
get_tweet_comments read-only cursortweet_id*
Fetch one page of replies to a Twitter/X post. Returns about 20 replies plus a next_cursor. The first item of a page can repeat the last item of the previous page, so de-duplicate…
get_tweet_thread read-only cursortweet_id*
Fetch one page of a Twitter/X thread — the chain of follow-up posts the author wrote under their own post ("1/", "2/", ...). Give it the ID of any post in the chain and it returns…
get_user_by_id read-only user_id*
Look up a Twitter/X user profile by numeric user ID. Bills one user request against the caller's balance.
get_user_by_username read-only username*
Look up a Twitter/X user profile by username (handle). Returns the profile including follower and following counts. Bills one user request against the caller's balance.
get_user_followers read-only cursoruser_id*
Fetch one page of a user's followers. This is one of the most expensive tools: a page is set upstream and can run to ~100 user records, every one of which is billed. Never page thr…
get_user_following read-only cursoruser_id*
Fetch one page of the accounts a user follows. Expensive: a page is set upstream and can run to ~100 user records, every one of which is billed. Never page through a large account'…
get_user_mentions read-only cursorusername*
Fetch one page of posts mentioning a given user, newest first. Returns about 20 posts plus a next_cursor. The first item of a page can repeat the last item of the previous page, so…
get_user_tweets read-only cursoruser_id*
Fetch one page of a user's own posts (excluding replies), newest first. Returns about 20 posts plus a next_cursor. If the account has a pinned post it is prepended to every page, s…
get_user_tweets_and_replies read-only cursoruser_id*
Fetch one page of a user's posts including their replies, newest first. Returns about 20 items plus a next_cursor. If the account has a pinned post it is prepended to every page, s…
search_tweets read-only typequery*cursor
Search Twitter/X posts. Returns one page of about 20 results plus a next_cursor, and bills one search request against the caller's balance. The query supports Twitter's advanced s…
search_users read-only query*
Search Twitter/X user profiles by name or handle. Returns one page of matching profiles and bills against the caller's balance. Use this when you know roughly who someone is but no…