整套 GTM 流程, 一个数据层撑住
调研市场、拉出名单、盯住对手——小 GTM 团队每周都要跑一遍的循环。把 Anysite 接进你的智能体,整套流程在一段对话里跑完,数据在查询时现拉,成本只是按人头计费的 GTM 工具的一个零头。
能问什么,会回什么
画客户画像
提问:「画一遍目标客户画像:哪些 B2B SaaS 公司近 90 天在招 RevOps,而且刚拿到融资?」
Anysite 匹配到 company search · funding · job posts,返回 38 家公司。
| 公司 | 信号 | 轮次 | 在招 |
|---|---|---|---|
| Finlo | 挂出 RevOps 负责人 | A 轮 | 3 个岗位 |
| Cartora | 融资 $12M | A 轮 | 5 个岗位 |
| Nexbill | 新任 CRO 到位 | 种子轮 | 2 个岗位 |
拉名单
提问:「找 50 位美国 2021 年之后成立的金融科技创业公司的增长负责人,带主页链接和公司规模。」
Anysite 匹配到 people search · profiles · company size,返回 50 位潜客。
| 潜客 | 公司 | 职位 | 规模 |
|---|---|---|---|
| growth-arlen | Payven | 增长负责人 | 38 |
| mira-gtm | Fundrail | 增长副总裁 | 120 |
| tave-ops | Ledgio | 增长负责人 | 54 |
盯对手
提问:「这个月对手那边有什么变化——招聘、技术栈、App 更新、流量?」
Anysite 匹配到 traffic · job posts · app releases,返回 11 处变化。
| 对手 | 变化 | 细节 | 时间 |
|---|---|---|---|
| Orvane | 价格页改动 | 新增年付档 | 2 天前 |
| Tallio | 新挂 6 个岗位 | 平台团队 | 本周 |
| Brivex | App 更新已发 | 流量涨 18% | 5 天前 |
今天的 GTM 数据:买来的名单、烧掉的 credits、看不见的角落
主动获客、市场调研和竞品分析各有自己的页面讲得更细。这一页讲的是把它们当成一个循环来跑——小 GTM 团队做一场活动,实际上就是这么干的。
今天的名单,你一问就现拉
智能体在 650+ 个数据源上现做名单,商业数据里别人够不着的那部分也在内——小众目标客户就待在那儿。不用再去租一份放旧了的名单。整套流程,一个固定价
智能体替你盯整个赛道
三步开始
Claude Code: $ claude mcp add --transport http anysite \ "https://mcp.anysite.io/mcp?api_key=YOUR_KEY" > registering tools … ✓ connected $ claude mcp list anysite http connected > the same catalog is available over REST — > see the REST tab, no MCP client required > every source included on every plan > nothing to install, nothing to keep running ✓ ready
Cursor: { "mcpServers": { "anysite": { "url": "https://mcp.anysite.io/mcp?api_key=YOUR_KEY", "transport": "http" } } } > goes in ~/.cursor/config.json > type /mcp in Cursor to see the tools appear > the same block works in any MCP client ✓ connected
REST: curl -X POST "https://api.anysite.io/api/people/profile" \ -H "access-token: YOUR_TOKEN" \ -H "Content-Type: application/json" \ -d '{"url": "https://.../in/username"}' > one POST, one auth header, a typed profile back import requests headers = {"access-token": "YOUR_TOKEN"} r = requests.post("https://api.anysite.io/api/people/profile", headers=headers, json={"url": "https://.../in/username"}) print(r.json()["headline"])
大白话: 找 50 位美国 2021 年之后成立的金融科技创业公司的增长负责人。 > no query language > no endpoint IDs > no field mapping > no pagination to handle > no maintenance when a source changes ✓ the agent decides which endpoints to call
智能体调用了什么: ⏺ tool · anysite-mcp > Endpoints matched — people search · profiles · email finder > Filling parameters from the brief … > geo US > industry fintech > founded > 2021 > role head of growth > email verified only > Paging through results … > Deduplicating by company domain … > Typed fields, one schema per source ✓ Data ready — 50 prospects ✓ 50 rows ready for the sequence
表格: Name Role Company Email A. Rivera Head of Growth Finlo a.rivera@finlo.io J. Chen VP Growth Cartora j.chen@cartora.com M. Okafor Head of Growth Nexbill m.okafor@nexbill.io L. Fontaine Head of Growth Paylane l.fontaine@paylane.io S. Bergman Growth Lead Truffle s.bergman@truffle.fi D. Almeida Head of Growth Norvex d.almeida@norvex.io K. Ivarsson VP Growth Kolibri k.ivarsson@kolibri.se R. Haddad Head of Growth Sparkpay r.haddad@sparkpay.io T. Nowak Growth Lead Vireo t.nowak@vireo.pl E. Duarte Head of Growth Belmonte e.duarte@belmonte.io > sample rows · request_id req_abc123
JSON: [ { "name": "A. Rivera", "role": "Head of Growth", "company": "Finlo", "email": "a.rivera@finlo.io" }, { "name": "J. Chen", "role": "VP Growth", "company": "Cartora", "email": "j.chen@cartora.com" }, { "name": "M. Okafor", "role": "Head of Growth", "company": "Nexbill", "email": "m.okafor@nexbill.io" } ] > sample records · request_id req_abc123
设一次,智能体就一直照着跑
常驻剧本,通过 MCP 交给智能体定时跑。结果直接落到你本来就在用的地方,一周下来做的是决策,不是收集数据。
信号一响,当天就触达。
周一一开始就有客户可跟。
按今天的市场排优先级,不是上季度的。
整套流程,跑在一个数据层上
画市场地图、拉出今天的名单、比潜客更早知道对手发了什么。本页每一个流程都跑在你的智能体里,走 MCP,每月 $30 起,7 天免费试用。想在自己的代码里用同一套目录?REST 和 CLI 共用一把 API key,每月 $49 起。
常见问题
这个循环就是为这种情况做的。智能体在 650+ 个数据源上实时搜——商业数据、创业公司名录、论坛、产品发布平台——小众目标客户留下的痕迹,买来的数据库从来没收进去。也说清楚:如果你的买家在公开网络上完全没有痕迹,任何数据层都变不出来;但多数 B2B 细分里痕迹是有的,只是现成名单没覆盖到。