Clay 的富集表加瀑布模型功能强大,但对于认真使用的用户起价为 800 美元/月。到 2026 年,团队将在 Claude Code + Scavio 中重建排名前 5 的 Clay 工作流程,并节省 70%。本教程移植了潜在客户丰富、网站更改检测和意图信号工作流程。
前置条件
- 克劳德·代码最新
- Scavio API 密钥
- 用于表格 UI 的 Google Sheets 或 Airtable
- Node.js 20+
操作指南
步骤 1: 将 Sheet 设置为表格 UI
列:姓名、公司、角色、enriched_bio、last_news。
Text
# Google Sheet schema
name | company | role | enriched_bio | last_news | score步骤 2: 在 Claude 代码中注册 Scavio MCP
在丰富循环期间启用工具访问。
JSON
{
"mcpServers": {
"scavio": { "command": "scavio-mcp", "env": { "SCAVIO_API_KEY": "sk_live_..." } }
}
}步骤 3: 写出丰富技能
Claude Code 读取该表,通过 Scavio 丰富每一行,然后写回。
// ~/.claude/skills/clay-enrich.md
For each row with empty enriched_bio, use scavio to search the name + company and fill in:
- enriched_bio (role, seniority, tenure)
- last_news (most recent company news)
- score (0-10 based on ICP fit)步骤 4: 运行浓缩
Claude Code 循环遍历行。
Bash
claude-code run ./clay-enrich.md --sheet prospects.csv步骤 5: 添加瀑布作为后备
如果 Scavio 找不到数据,请返回 Google 新闻 SERP。
// In the skill prompt:
If primary SERP returns nothing, run scavio with platform=news as fallback.Python 示例
Python
import os, requests, csv
API_KEY = os.environ['SCAVIO_API_KEY']
def enrich(row):
q = f'"{row["name"]}" "{row["company"]}"'
r = requests.post('https://api.scavio.dev/api/v1/search',
headers={'x-api-key': API_KEY},
json={'query': q, 'num_results': 3})
hits = r.json().get('organic_results', [])
row['enriched_bio'] = hits[0].get('snippet', '') if hits else ''
return row
with open('prospects.csv') as f:
rows = [enrich(r) for r in csv.DictReader(f)]
print(rows[0])JavaScript 示例
JavaScript
const API_KEY = process.env.SCAVIO_API_KEY;
export async function enrich(row) {
const r = await fetch('https://api.scavio.dev/api/v1/search', {
method: 'POST',
headers: { 'x-api-key': API_KEY, 'Content-Type': 'application/json' },
body: JSON.stringify({ query: `"${row.name}" "${row.company}"`, num_results: 3 })
});
const hits = (await r.json()).organic_results || [];
return { ...row, enriched_bio: hits[0]?.snippet || '' };
}预期输出
JSON
1000-row enrichment in 12-20 minutes. Typical Clay equivalent cost: $400/mo. Claude Code + Scavio: $30-80/mo at same volume.