SuperMCP gives AI tools Reddit and Twitter access via browser cookies
Bishwas Bhandari built SuperMCP, an MCP server that lets Claude, Cursor, and other AI tools search Reddit, Twitter/X, Google Trends, and Google News by reusing the user's existing Chrome browser session — no API keys required.
Score breakdown
Developers building agentic research workflows can use SuperMCP to give Claude or Cursor live access to Reddit threads, Twitter sentiment, and trending topics without paying for expensive API tiers or maintaining fragile OAuth integrations.
- 01SuperMCP is an MCP server built by Bishwas Bhandari that gives AI tools like Claude and Cursor access to Reddit, Twitter/X, Google Trends, and Google News.
- 02It reads cookies from Chrome's local database and uses a headless Chromium instance to browse Reddit and Twitter as the logged-in user — no API keys or OAuth registration needed.
- 03The tool exposes 13 tools total, covering Reddit search and thread retrieval, Twitter search and timelines, Google Trends, and Google News.
Bishwas Bhandari created SuperMCP to solve a recurring frustration: integrating Reddit research into an AI coding workflow required registering OAuth apps, managing token refresh, and dealing with aggressive rate limits — and scraping broke within a week when Reddit changed its markup. The insight behind SuperMCP is that a developer is already logged into Reddit and Twitter in Chrome, so the tool reads cookies directly from Chrome's local database and launches a headless Chromium instance that browses those platforms as the authenticated user. All processing runs locally; the only external call is API key validation to `webmatrices.com`.
SuperMCP ships as a Python package (`pip install supermcp`) and integrates with Claude via `claude mcp add supermcp -- supermcp`, or with Cursor by adding a single entry to `.cursor/mcp.json`.
SuperMCP ships as a Python package (`pip install supermcp`) and integrates with Claude via `claude mcp add supermcp -- supermcp`, or with Cursor by adding a single entry to `.cursor/mcp.json`. It exposes 13 tools in total: Reddit tools include `reddit_search`, `reddit_get_post`, `reddit_get_subreddit_posts`, `reddit_search_subreddit`, and `reddit_get_user_activity`; Twitter tools cover `twitter_search`, `twitter_get_tweet`, and `twitter_get_user_tweets`; and four tools handle Google Trends and Google News via public RSS feeds. The post notes that the Twitter/X Basic API tier costs $100/month and the Pro tier $5,000/month, making SuperMCP's cookie-based approach a practical alternative for developers who only need read access.
The free tier provides 100 requests per day, with unlimited requests available for a one-time payment of $9. Bhandari notes that LinkedIn, Medium, Dev.to, and other social platforms are planned as future MCP additions. The package requires Python 3.10+ and supports macOS, Windows, and Linux.
Key facts
- 01SuperMCP is an MCP server built by Bishwas Bhandari that gives AI tools like Claude and Cursor access to Reddit, Twitter/X, Google Trends, and Google News.
- 02It reads cookies from Chrome's local database and uses a headless Chromium instance to browse Reddit and Twitter as the logged-in user — no API keys or OAuth registration needed.
- 03The tool exposes 13 tools total, covering Reddit search and thread retrieval, Twitter search and timelines, Google Trends, and Google News.
- 04Google Trends and Google News are accessed via public RSS feeds, requiring no browser session.
- 05The only external network call is API key validation to webmatrices.com; all other processing runs locally.