# io.github.IsaiahDupree/socialbridge-mcp (remote · socialbridge-mcp.vercel.app)

Unified social-media data across 10 networks: profiles, posts, search, comments, cross-search.

- Trust score: 72/100 (medium)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- remote · `socialbridge-mcp.vercel.app`: 72/100 (this document), [markdown](https://verifymcp.io/servers/isaiahdupree-socialbridge-mcp/socialbridge-mcp.md), [page](https://verifymcp.io/servers/isaiahdupree-socialbridge-mcp/socialbridge-mcp)

## Channel facts

- Endpoint: `https://socialbridge-mcp.vercel.app/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `1.0.0`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Endpoint Security**: 80/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - No authorisation is required to call this server. Every tool declares its destructiveHint and none is destructive, so open access doesn't expose one.
  - HTTPS is enforced; there's no plaintext access path.
  - The HSTS (Strict-Transport-Security) header is present.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 72/100
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 1325 tokens (~132/item across 10 items; 10 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 7/100
  - Stability observed for 2 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http isaiahdupree-socialbridge-mcp https://socialbridge-mcp.vercel.app/mcp
```

### Codex

```toml
[mcp_servers.isaiahdupree-socialbridge-mcp]
url = "https://socialbridge-mcp.vercel.app/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "isaiahdupree-socialbridge-mcp": {
      "type": "remote",
      "url": "https://socialbridge-mcp.vercel.app/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add isaiahdupree-socialbridge-mcp --url https://socialbridge-mcp.vercel.app/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  isaiahdupree-socialbridge-mcp:
    url: "https://socialbridge-mcp.vercel.app/mcp"
```

### Other

```json
{
  "mcpServers": {
    "isaiahdupree-socialbridge-mcp": {
      "type": "http",
      "url": "https://socialbridge-mcp.vercel.app/mcp"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-02 (score 72, +1)

- [functional improvement] Stability: unverified → 0.03

### 2026-08-01 (score 71)

First indexed and scored.

## MCP tools (10)

### `social_profile` (~122 tokens)

Get a social profile

Fetch one account profile from any supported network as the unified Profile schema (id, username, displayName, bio, url, followers, following, postCount, verified, avatarUrl, externalUrl), tagged with its platform. Keyless on Instagram, TikTok, YouTube, Pinterest, Snapchat, and Threads. Twitter/X, Reddit, and Facebook need operator-side credentials (returns credentials_required until set); LinkedIn is quarantined (platform_disabled).

Input parameters:

- `platform` (string, required): Target social network.
- `username` (string, required): Account handle / username (without @).

### `social_posts` (~170 tokens)

Get an account's recent posts

An account's recent posts / videos / tweets / threads / pins as the unified Post[] schema (id, url, author, text, createdAt, like/comment/share/view counts, mediaType, mediaUrls, hashtags), tagged with its platform. Keyless on Instagram, TikTok, YouTube, Pinterest, Snapchat, and Threads. Twitter/X, Reddit, and Facebook need operator-side credentials; LinkedIn is quarantined. For a keyless Reddit history pull use reddit_history.

Input parameters:

- `cursor` (string): Opaque pagination cursor from a previous response (where the platform supports paging).
- `limit` (integer): Max results, clamped 1-100. Default 20.
- `platform` (string, required): Target social network.
- `username` (string, required): Account handle / username (without @).

### `social_search` (~157 tokens)

Search one network for posts

Search a single network for posts matching a query, returned as the unified Post[] schema and tagged with its platform. Keyless on TikTok, YouTube, and Pinterest. Instagram, Twitter/X, Reddit, and Facebook need operator-side credentials (returns credentials_required until set). Snapchat and Threads do not support keyless search (returns not_supported); LinkedIn is quarantined. To fan one query across every network at once, use search_all.

Input parameters:

- `cursor` (string): Opaque pagination cursor from a previous response (where the platform supports paging).
- `limit` (integer): Max results, clamped 1-100. Default 20.
- `platform` (string, required): Target social network.
- `q` (string, required): Search query.

### `social_comments` (~164 tokens)

Get comments / replies on a post

Comments / replies on one post as the unified Comment[] schema, tagged with its platform. Provide url OR postId. Keyless on TikTok, YouTube, and Threads (and a single tweet via syndication on Twitter/X). Instagram, Reddit, and Facebook need operator-side credentials; Snapchat comments are not supported keyless; LinkedIn is quarantined.

Input parameters:

- `cursor` (string): Opaque pagination cursor from a previous response (where the platform supports paging).
- `limit` (integer): Max results, clamped 1-100. Default 20.
- `platform` (string, required): Target social network.
- `postId` (string): Platform-native post id. Provide url OR postId.
- `url` (string): Post URL. Provide url OR postId.

### `search_all` (~145 tokens)

Search every network at once

The wedge no incumbent offers: fan one search query out across the requested platforms (default: all keyless, non-disabled) in parallel, merge the unified Post[], and tag each result with its platform. Gated / disabled / unsupported / throttled engines are listed under "skipped" with an honest reason — the call still returns whatever came back.

Input parameters:

- `limit` (integer): Max results, clamped 1-50. Default 10.
- `platforms` (string): Comma-separated subset of platforms to query (e.g. "tiktok,youtube,threads"). Omit for all keyless, non-disabled platforms.
- `q` (string, required): Search query.

### `reddit_history` (~160 tokens)

Reddit full history (keyless)

Keyless full-history pull via Arctic Shift — a user's or subreddit's posts, or a keyword search across Reddit history, returned as the unified Post[]. Provide at least one of username, subreddit, or q. Optional before/after bound the window by epoch-seconds or ISO timestamp.

Input parameters:

- `after` (string): Return items created after this epoch-seconds / ISO timestamp.
- `before` (string): Return items created before this epoch-seconds / ISO timestamp.
- `limit` (integer): Max results, clamped 1-100. Default 25.
- `q` (string): Keyword to search across history.
- `subreddit` (string): Subreddit (without r/).
- `username` (string): Reddit username (without u/).

### `facebook_ads` (~153 tokens)

Facebook / Meta Ad Library

Meta (Facebook/Instagram) Ad Library records as the unified Ad[] (id, pageName, adCreativeBody, adSnapshotUrl, startDate, currency, spend + impression ranges). Provide q OR pageId. GATED — needs operator-side FACEBOOK_ACCESS_TOKEN (with ads_read); returns credentials_required until set.

Input parameters:

- `country` (string): ISO-3166 alpha-2 country (upper-cased server-side). Default US.
- `limit` (integer): Max results, clamped 1-100. Default 25.
- `pageId` (string): Advertiser Page id. Provide q OR pageId.
- `q` (string): Free-text search across ad creative. Provide q OR pageId.

### `youtube_transcript` (~122 tokens)

YouTube transcript / caption languages

Available caption-language list (and cue segments where retrievable) for a YouTube video. Provide url OR videoId. Keyless. NOTE: actual cue text is BotGuard-gated keyless, so it is reported honestly (available:false, empty segments) rather than fabricated.

Input parameters:

- `lang` (string): Preferred caption language (BCP-47, e.g. "en").
- `url` (string): YouTube watch URL. Provide url OR videoId.
- `videoId` (string): 11-char video id. Provide url OR videoId.

### `threads_post` (~66 tokens)

Threads post by shortcode

Fetch a single thread by shortcode or URL, including its replies, as the unified Post (with replies). Provide code OR url. Keyless.

Input parameters:

- `code` (string): Thread shortcode. Provide code OR url.
- `url` (string): Full thread URL. Provide code OR url.

### `snapchat_spotlight` (~66 tokens)

Snapchat creator Spotlight feed

A creator's public Snapchat Spotlight feed as the unified Post[] with real view/comment/share counts. Keyless.

Input parameters:

- `limit` (integer): Max results, clamped 1-50. Default 20.
- `username` (string): Account handle / username (without @).

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/isaiahdupree-socialbridge-mcp/socialbridge-mcp#diagnostics

## Score history

- 2026-08-03: 72
- 2026-08-02: 72
- 2026-08-01: 71

## Links

- Remote endpoint: https://socialbridge-mcp.vercel.app/mcp
- Repository: https://github.com/IsaiahDupree/socialbridge-mcp
- Website: https://socialbridge-mcp.vercel.app/
- Changelog RSS feed: https://verifymcp.io/servers/isaiahdupree-socialbridge-mcp/socialbridge-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/isaiahdupree-socialbridge-mcp/socialbridge-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/isaiahdupree-socialbridge-mcp/socialbridge-mcp
