Back to Browse

Social Superpowers MCP Server

Developer ToolsLow Risk10.0MCP RegistryRemote
Free

Server data from the Official MCP Registry

Live X/Twitter and Reddit research. 10 read-only MCP tools, Google/GitHub sign-in. Free tier.

About

Live X/Twitter and Reddit research. 10 read-only MCP tools, Google/GitHub sign-in. Free tier.

Remote endpoints: streamable-http: https://superpowers.social/mcp

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Imported from the Official MCP Registry.

Endpoint verified · Requires authentication · 1 issue found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

How to Connect

Remote Plugin

No local installation needed. Your AI client connects to the remote endpoint directly.

Add this to your MCP configuration to connect:

{
  "mcpServers": {
    "social-superpowers-social-superpowers": {
      "url": "https://superpowers.social/mcp"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

Superpowers.social — MCP server for X/Twitter & Reddit

Hosted MCP server for live X/Twitter and Reddit research. 10 read-only tools for search, threads, timelines, posts and comments. Streamable HTTP: add the URL and sign in with Google or GitHub when prompted. Free tier available.

Status Pricing MCP


Tools

All ten tools are read-only and idempotent. Eight of them trim the upstream response to the fields listed below and, when the trim saves enough to be worth reporting, append a stats line saying how much was stripped. twitter-news and reddit-get-user-comments are the exceptions: they return the upstream objects as they arrive, so the field lists below do not describe them and no stats line is emitted.

X/Twitter (5)

ToolWhat it doesArguments
twitter-searchSearch tweets matching a queryquery (required), count (default 10), cursor, text_only
twitter-readRead a single tweettweet (URL or ID, required), text_only
twitter-threadRead a full conversation threadtweet (URL or ID, required), cursor, text_only
twitter-user-tweetsRecent tweets from one accounthandle (required, no @), count (default 20), cursor, text_only
twitter-newsTrending news on Xcount (default 10), category (for-you, news, sports, entertainment, trending)

Tweet fields, for twitter-search, twitter-read, twitter-thread and twitter-user-tweets: id, text, createdAt, author, authorName, url, and replyCount / retweetCount / likeCount when X returns them. Quoted tweets are nested under quotedTweet. text_only reduces each tweet to {id, text}. twitter-news returns news items, not tweets, and passes their fields through unchanged apart from a curation prefix stripped off category.

Reddit (5)

ToolWhat it doesArguments
reddit-searchSearch posts across Reddit or one subredditquery (required), subreddit, count (default 10), sort, time_filter, text_only
reddit-get-postA post plus its commentspost_id (required), subreddit, comment_limit (default 10)
reddit-get-postsTop posts from a subreddit for a time windowsubreddit (required), count (default 10), time_filter (default week), text_only
reddit-get-user-postsPosts submitted by a userusername (required), count (default 10), sort (default new), time_filter (default all), text_only
reddit-get-user-commentsComments by a userusername (required), count (default 10), sort (default new), time_filter (default all)

Post fields: id, title, author, subreddit, createdUtc, url, and the post body when there is one. The list tools — reddit-search, reddit-get-posts, reddit-get-user-posts — truncate that body to a 500-character selftext_preview; reddit-get-post returns the full selftext and its comments as id, author, body, plus depth where the source gives one. text_only reduces each post to {id, title}. None of these carry a Reddit score or comment count — the source does not provide them. reddit-get-user-comments applies no field filtering — its comment objects come through as the source returns them.

Setup

Authentication is required for every call — an unauthenticated initialize returns 401.

Claude Code (verified 2026-09-16)

claude mcp add --transport http social-superpowers https://superpowers.social/mcp

Sign in with Google or GitHub when Claude Code opens the browser prompt. That is the whole setup — the ten tools are then available in the session.

Any other MCP client

Any client that speaks Streamable HTTP can connect to https://superpowers.social/mcp with either:

  • its own MCP OAuth sign-in flow, if it supports one — the same Google or GitHub prompt, nothing to set up in advance; or
  • an API key, for clients without MCP OAuth: mint a key at https://superpowers.social/account and send it as Authorization: Bearer sk_live_… or x-api-key.

Generic Streamable-HTTP-with-API-key configuration shape (adjust to your client's own config format):

{
  "mcpServers": {
    "social-superpowers": {
      "type": "http",
      "url": "https://superpowers.social/mcp",
      "headers": {
        "Authorization": "Bearer sk_live_…"
      }
    }
  }
}

Examples

You: what are people on X saying about $INTC?
Agent: twitter-search { "query": "$INTC", "count": 25 }
       → up to 25 tweets with author, timestamp, link and reply/retweet/like counts

You: which subreddits discuss Tirzepatide side effects?
Agent: reddit-search { "query": "tirzepatide side effects", "count": 10 }
       → posts with author, subreddit, permalink and a body preview
       reddit-get-post { "post_id": "1abc234" }
       → the full post with its comments

License

MIT — this repository contains the public manifest, examples, and docs. The hosted gateway implementation is closed-source; the MCP contract is the integration surface.

Links

Reviews

No reviews yet

Be the first to review this server!