Skip to main content
可作为 MCP tool 调用personal_profile —— 可直接在 Claude / Cursor / 任意 MCP 客户端中调用。接入方式见 MCP Server
已上线   免费 · 0 credits

它为 Agent 做什么

personal_profile 返回你在 Dashboard → Profile 保存的财务背景:风险偏好、投资期限、基准币种和备注。Agent 需要按你的个人约束调整措辞、假设或组合分析时调用它。 这个工具只读。它不会修改你的 Profile,不会下单,也不会替你推断没填写的答案。如果你还没有保存 Profile,接口会返回 data: null200 OK 只返回你自己账号的 Profile 数据。

返回值

data
PersonalProfile | null
required
当前调用者自己账号的已保存 Profile;没有保存时为 null
meta.creditsUsed
number
始终为 0 —— 这次读取免费。
meta.remainingCredits
number
账号剩余 credits。
200 OK · personal_profile
{
  "data": {
    "risk_preference": "moderate",
    "investment_horizon": "5-10 years",
    "base_currency": "USD",
    "extra_notes": "Prefer diversified ETFs and avoid concentrated single-stock positions."
  },
  "meta": { "creditsUsed": 0, "remainingCredits": 100 }
}
200 OK · 未保存 Profile
{
  "data": null,
  "meta": { "creditsUsed": 0, "remainingCredits": 100 }
}

说明

用户问需要个人背景的问题时,先调用 personal_profile,如果还需要持仓上下文,再结合 personal_holdings
你账号下任何仍有效的 API key 或 Remote MCP URL 都可以读取这些已保存的 Profile 数据,直到你删除 Profile 或吊销对应凭证。
Profile 值是用户保存的偏好和备注,是给 Agent 使用的上下文,不是经过核验的财务建议。

直接调用

{
  "method": "tools/call",
  "params": {
    "name": "personal_profile",
    "arguments": {}
  }
}

完整参数参考

这个接口不接受请求参数。

相关接口

个人持仓

读取 Dashboard Profile 中保存的持仓。

MCP Server 接入

60 秒接入 Claude / Cursor / 任意 agent harness。