Stormy Cookbook 提供可直接复用的代码配方,用于 Stormy 社交数据 API 和 MCP 服务器,通过统一的 REST API 和 MCP 工具,在 TikTok、YouTube、Instagram、LinkedIn、X 和 Reddit 六个平台上搜索个人资料、帖子和邮箱,只需一个 HTTP 合同。

Stars

72

7 天增长

暂无数据

Fork 数

0

开放 Issue

0

开源协议

MIT

最近更新

2026-07-27

AI 仓库情报摘要
FR-AI / ANALYSIS

为什么值得关注

它用一个 API 密钥、一个费率表和一个响应格式解决了社交数据访问的碎片化问题,支持幂等性、成本信号和 MCP,使其特别适合 AI 智能体使用。

适合谁使用

  • AI 智能体开发者
  • 社交媒体营销人员与网红
  • 数据分析师与研究人员
  • 自动化外联或监控工具构建者

典型使用场景

  • 在 TikTok、YouTube 或 Instagram 上按领域查找网红
  • 构建带有已验证邮箱的外联列表(支持 Instagram、TikTok、YouTube)
  • 跨六个平台进行受众研究
  • 使用任务(Jobs)进行大规模数据采集,支持 1000+ 条结果

项目优势

  • 一个 API 密钥覆盖六个社交网络,端点统一
  • 仅按成功结果付费(缓存 $0.01,每个找到的邮箱 $0.15)
  • 幂等性键(Idempotency-Key)防止重试时重复计费
  • MCP 服务器让 AI 智能体能在运行时发现并调用工具

使用前须知

  • 免费层每月仅 50 次缓存结果;新鲜数据需要付费计划($50/月)
  • 邮箱端点仅支持 Instagram、TikTok 和 YouTube(不支持 X、LinkedIn、Reddit)
  • 所有数据均为公开数据,无法访问私人资料或私信

README 快速开始

Stormy Cookbook — TikTok, YouTube, Instagram, LinkedIn, X and Reddit API recipes for AI agents

Open-source, copy-pasteable recipes for the Stormy Social Data API and the Stormy MCP server (Model Context Protocol, Streamable HTTP).

One HTTP contract — search, profile, emails, jobs — across six social networks. No proxy pool, no six vendor SDKs, no scraper to babysit. Point your agent at https://stormy.ai/mcp, or curl the REST base at https://stormy.ai/api/v1.

Jump to: Recipes · MCP quickstart · REST quickstart · Endpoints · Pricing · Errors · FAQ


Why this exists

Every "get social data" project starts the same way: six different APIs, six auth schemes, six rate limits, six response shapes, and a scraper that breaks on a Tuesday. Then you bolt an LLM on top and discover none of it is shaped for an agent — no cost signal, no idempotency, no durable jobs, no machine-readable capability list.

Stormy is that layer, already built. This cookbook is how you use it.


Quickstart A: connect the MCP server

The Stormy MCP server speaks Streamable HTTP at https://stormy.ai/mcp and authenticates with an HTTP bearer token. Get a key at stormy.ai/account and export it:

export STORMY_API_KEY="stm_live_..."   # never commit this

Claude Code

claude mcp add --transport http stormy https://stormy.ai/mcp \
  --header "Authorization: Bearer $STORMY_API_KEY"

Codex CLI (~/.codex/config.toml)

[mcp_servers.stormy]
url = "https://stormy.ai/mcp"
bearer_token_env_var = "STORMY_API_KEY"

Cursor / Windsurf / any mcp.json client

{
  "mcpServers": {
    "stormy": {
      "url": "https://stormy.ai/mcp",
      "headers": {
        "Authorization": "Bearer ${STORMY_API_KEY}"
      }
    }
  }
}

ChatGPT custom connector

Name: Stormy Social Data
MCP URL: https://stormy.ai/mcp
Authentication: OAuth

The ten MCP tools you get

| Tool | What it does | | --- |

项目描述

Open-source cookbook for the Stormy Social Data API and MCP server (Model Context Protocol) — one REST API for the TikTok API, YouTube API, Instagram API, LinkedIn API, X (Twitter) API and Reddit API. Search creators, resolve profiles, read posts and find verified emails from Claude, Cursor, Codex, ChatGPT or curl. One key, no scrapers.

相关仓库与替代方案

根据分类、Topic 和编程语言匹配的相似项目。

deerwork-ai
精选
deerwork-ai GitHub avatar

deer-workflow

An open-source Dynamic Workflow runtime that combines deterministic TypeScript orchestration with replaceable Agent runtimes.

AI 与机器学习大语言模型
312
0xwilliamortiz
精选
0xwilliamortiz GitHub avatar

openclaude-improved

OpenClaude is an open-source CLI coding agent that runs on any platform and supports a wide range of LLM providers, offering the same tools and workflows as Claude Code.

AI 与机器学习大语言模型
577
mereyabdenbekuly-ctrl
精选
mereyabdenbekuly-ctrl GitHub avatar

clodex-ide

Clodex is an open-source, local-first agentic IDE that combines persistent AI tasks, code, terminal, browser, Git, models, memory, and governed execution in one Electron workspace, currently in technical preview.

AI 与机器学习AI 智能体
859