socialintel/socialintel-mcp

🌐 Social Media
0 Views
0 Installs

🐍 ☁️ - Instagram influencer search API for AI agents β€” search by niche, country, demographics, or follower count, returns usernames, bios, follower counts, business categories, and public business emails. Single-profile lookup at $0.01; full search $0.50–$1.30 (1–100 leads). USDC on Base, Solana, Polygon, Arbitrum via x402 micropayments. No signup, no API keys.

Quick Install

One-Click IDE Configuration
claude_desktop_config.json
{
  "mcpServers": {
    "socialintel-socialintel-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "socialintel-socialintel-mcp"
      ]
    }
  }
}
Or

Using an AI coding agent (Claude Code, Cursor, etc.)? Copy a ready-made prompt that tells it to fetch the setup instructions and install this server for you.

Documentation Overview

Social Intel MCP

Instagram influencer discovery for AI agents. Pay per call in USDC via x402 β€” no API keys, no subscriptions, no sign-up.

MIT license Python 3.10+ MCP compatible x402 payments socialintel.dev socialintel-mcp MCP server

socialintel.dev is a data layer for AI agents running influencer-outreach, brand-research, and creator-intelligence workflows. This repository ships an MCP server that exposes the same data through the Model Context Protocol so any MCP-compatible client (Claude, Cursor, VS Code, Cline, …) can call it natively.

πŸ“‹ Table of Contents

πŸš€ Quickstart β€” hosted endpoint

Recommended. Point any MCP client that speaks HTTP/SSE or streamable transport directly at our hosted server:

https://socialintel.dev/mcp

No install, no pip, no Docker. Your agent's x402 client handles payment on each tools/call.

If your client needs a stdio wrapper (Claude Desktop on older versions, some CLI clients), see the MCP clients section for uvx / pip install setups that proxy stdio β†’ HTTPS.

πŸ”Œ MCP clients

Claude Desktop

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "socialintel": {
      "command": "uvx",
      "args": [
        "--from",
        "git+https://github.com/socialintel/socialintel-mcp",
        "socialintel-mcp"
      ],
      "env": {
        "SOCIAL_INTEL_API_URL": "https://socialintel.dev"
      }
    }
  }
}

Restart Claude Desktop. search_leads appears in the tool list.

Cursor

Preferences β†’ MCP β†’ add server:

{
  "socialintel": {
    "command": "uvx",
    "args": ["--from", "git+https://github.com/socialintel/socialintel-mcp", "socialintel-mcp"]
  }
}

VS Code (with GitHub Copilot or Continue)

.vscode/mcp.json in your workspace:

{
  "servers": {
    "socialintel": {
      "command": "uvx",
      "args": ["--from", "git+https://github.com/socialintel/socialintel-mcp", "socialintel-mcp"]
    }
  }
}

Cline (VS Code extension)

Cline auto-detects MCP servers from cline_mcp_settings.json. Add the same server block as Claude Desktop above.

Cherry Studio / Zed / any MCP-compatible client

Use the stdio command:

uvx --from git+https://github.com/socialintel/socialintel-mcp socialintel-mcp

Or point the client at the hosted HTTP endpoint if it supports remote MCPs: https://socialintel.dev/mcp

Direct pip install

pip install git+https://github.com/socialintel/socialintel-mcp
SOCIAL_INTEL_API_URL=https://socialintel.dev socialintel-mcp

πŸ› οΈ Tools

search_leads

Search Instagram influencers by demographics, location, keyword, or business category.

ParamTypeWhat it does
querystringKeyword on name/bio (e.g. yoga, travel blogger)
countrystringISO code (US, DE, UK, IN, BR) or full name
citystringCity filter (e.g. Los Angeles). Pair with country
categorystringFitness Β· Beauty Β· Travel Β· Food & Beverage Β· Gaming Β· Fashion Β· Lifestyle Β· Sports Β· Education Β· Finance Β· Tech Β· …
genderstringmale / female (also man / woman)
min_followersintFloor. 10000 = micro, 100000 = macro
max_followersintCeiling. 100000 excludes mega-accounts
limitint1–100 (default 20). Price scales with limit
demobooltrue = 3 free preview results, no payment

Each result:

{
  "username": "yoga_with_adriene",
  "full_name": "Adriene Mishler",
  "followers": 10500000,
  "category": "Fitness",
  "bio": "Yoga teacher & filmmaker from Austin TX",
  "public_email": "contact@adriene.com",
  "is_verified": true,
  "is_business": true,
  "gender": "woman"
}

public_email is populated where available β€” higher on business-verified accounts, lower on personal creator accounts (Instagram platform reality, not a filter we apply).

πŸ’° Payment flow (x402)

Agent payments follow the x402 protocol: a 402 Payment Required response carries signed payment requirements; the client signs a USDC transfer and retries; the server verifies + settles through a facilitator and returns results.

  1. Agent calls search_leads(category="Fitness", country="US").
  2. Server replies HTTP 402 with extensions.bazaar metadata and accepts blocks for Base (USDC) and Solana (USDC).
  3. If the client runs an x402 client library (x402-httpx, agentcash, the TypeScript x402 package, etc.), it signs a transfer on either chain and retries.
  4. Our server verifies + settles via the CDP facilitator (primary β€” also catalogues us on agentic.market) or PayAI facilitator (fallback). Results return on the retried call.

Pricing β€” transparent per-call, no minimums:

LimitUSDC
1–20$0.50
50$0.80
100$1.30

Formula: $0.50 + max(0, limit βˆ’ 20) Γ— $0.01.

Free demo with demo=true skips payment entirely; see Free demo mode.

🎯 Use cases

Micro-influencer discovery for brand outreach

search_leads(
    category="Beauty",
    country="US",
    min_followers=15000,
    max_followers=200000,
    limit=50,
)

Returns 50 beauty micro-influencers in the US, with public business emails where available.

Local creator sourcing (city-level)

search_leads(
    city="Los Angeles",
    category="Food & Beverage",
    min_followers=10000,
    limit=20,
)

LA food creators with 10K+ followers.

Keyword + demographics fusion

search_leads(
    query="personal trainer",
    gender="female",
    country="United Kingdom",
    min_followers=50000,
    max_followers=500000,
)

Female personal trainers in the UK, mid-to-large follower tier.

Free exploration before paying

search_leads(category="Travel", country="Germany", demo=True)

Returns 3 preview results with no payment β€” perfect for validating filters before spending.

πŸŽ›οΈ Configuration

Env varDefaultPurpose
SOCIAL_INTEL_API_URLhttp://localhost:8000Base URL for the upstream API. Set to https://socialintel.dev for production.
POSTHOG_API_KEY(empty)Optional β€” if set, the MCP server emits anonymous usage events to PostHog. Empty by default so there's no silent telemetry.
POSTHOG_HOSThttps://us.i.posthog.comOnly used when POSTHOG_API_KEY is set.

πŸ§ͺ Free demo mode

Pass demo=true on any search_leads call. You get up to 3 preview results, no payment required. The response includes an upgrade_message pointing at the paid URL so your agent can switch to paid mode after validating filters.

Demo is rate-limited to 5 requests per IP per hour. It reads from our cache rather than the live data source, so content reflects recent queries rather than live platform state.

🌐 Multiple transports

  • stdio (default) β€” uvx --from git+... socialintel-mcp
  • HTTPS / streamable β€” connect directly to https://socialintel.dev/mcp
  • SSE β€” the hosted endpoint also serves Server-Sent Events for clients that prefer it

The hosted endpoint is the simplest path β€” zero install, identical tool definitions.

πŸ”’ Privacy & telemetry

This server emits one anonymous event per tool call when POSTHOG_API_KEY is set:

  • mcp_search_leads β€” includes only the filter shape (query, country, category, gender, follower range, limit, demo flag) and the resulting row count. No profile usernames, no emails, no payer addresses.

Events are off by default (no key means no capture). If you enable telemetry you can point it at your own PostHog project β€” set POSTHOG_API_KEY to your own key and the events go to your instance, not ours.

Payment-level telemetry (x402 settle, transaction hashes, revenue) is captured server-side by socialintel.dev, not by this MCP wrapper.

πŸ—ΊοΈ Related

πŸ“„ License

MIT β€” see LICENSE.

πŸ› Issues

Bug reports, feature requests, agent-integration questions: github.com/socialintel/socialintel-mcp/issues

Related MCP Servers

06ketan/substack-ops

🐍 🏠 - Substack with zero AI API keys. 26 tools (posts, notes, comments, replies, reactions, restacks). Host LLM drafts via proposereply β†’ confirmreply tokens. SQLite dedup, JSONL audit, dry-run default. Install: uvx substack-ops mcp install cursor.

🌐 Social Media0 views
abhineet34/linkedin-mcp-server

πŸ“‡ 🏠 - Local LinkedIn MCP server for posting to LinkedIn from Claude. 9 tools β€” create/edit/delete posts (text, image, article), upload images, fetch profile, look up company pages, and check follower counts. Uses the official LinkedIn REST API with OAuth 2.0 (wmembersocial, OIDC).

🌐 Social Media0 views
anwerj/youtube-uploader-mcp

🏎️ ☁️ - AI‑powered YouTube uploaderβ€”no CLI, no YouTube Studio. Uploade videos directly from MCP clients with all AI capabilities.

🌐 Social Media0 views
arjun1194/insta-mcp

πŸ“‡ 🏠 - Instagram MCP server for analytics and insights. Get account overviews, posts, followers, following lists, post insights, and search for users, hashtags, or places.

🌐 Social Media0 views

Engagement

Views
0
Installs
0
Upvotes
0

Views and upvotes are unique per visitor network (hashed IP). Installs count copy actions.

Status

Health: Not checked yet

We have not completed a health check for this listing yet.

No check timestamp yet.

Unclaimed listing (imported or pending owner verification). Claim it β†’
β˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Claim this listing

Promote this listing

Optional paid placement. Free listings stay free forever.

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.