模型上下文协议
让你的智能体拥有一位专属用户研究员。
telepace 是一个原生的 MCP 服务端。五个有状态的工具,智能体调用它们就像人类产品经理打开一个调研标签页一样自然。
工具
每个工具都会返回一个 next_actions 字段,这正是让使用工具的智能体真正好用的关键。
create_campaignMCP 工具根据目标和背景起草一项调研,返回一个持久化的 campaign_id。
输入
{ title, goal, background?, target_completions?, channels? }输出
{ campaign_id, outline, share_url, next_actions }get_campaign_progressMCP 工具读取实时进展:目前完成数、各问题的覆盖率、已产生的花费。
输入
{ campaign_id }输出
{ status, completions, coverage, spend_usd, next_actions }get_campaign_insightsMCP 工具返回当前的主题聚类结果,并附带代表性的原话引用。
输入
{ campaign_id, min_confidence? }输出
{ themes[], verbatims[], next_actions }ask_followupMCP 工具用自然语言问题挖掘访谈语料库,非破坏性操作。
输入
{ campaign_id, question }输出
{ answer, supporting_quotes, next_actions }push_insightsMCP 工具导出到 Notion、Linear、Slack 或自定义 Webhook,按目的地幂等执行。
输入
{ campaign_id, destination, config }输出
{ status, external_ref, next_actions }# 1. Add the MCP server
$ claude mcp add telepace https://mcp.telepace.io
# 2. Ask Claude to do research
claude> Run a study on why users churn from our pro tier.
· Calling telepace.create_campaign …
↳ campaign_id: 4f2b…9c1
↳ share_url: https://telepace.io/r/4f2b9c1
· Calling telepace.get_campaign_progress …
↳ 32 / 50 completions · coverage 78%
· Calling telepace.get_campaign_insights …
↳ 3 themes surfaced (confidence ≥ 0.7)
Ready to push? Reply "push to Notion" and I'll finalize.