给 OpenCode 一个任务。
给它 Bird。

将 OpenCode 连接到 Bird 的 MCP 服务器。让你的智能体检查工作区、准备请求,并跨渠道跟踪结果。

从提示词到 送达。

你的智能体可以设置通道、管理客户并确认送达。
通过 MCP 和 CLI 实现完整的读写访问。

YouVoice

Can you check which calls are active right now and tell me which are connected and which are still ringing?

Bird MCP4 connected actions
  1. 1Read the workspaceworkspace_get
  2. 2Find calls in progressvoice_legs_list
  3. 3Inspect the connected callvoice_legs_get
  4. 4Inspect the ringing callvoice_legs_get

连接 OpenCode。
然后开始工作。

服务器连接和账户授权是两个独立的步骤。

opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "bird": {
      "type": "remote",
      "url": "https://mcp.bird.com/dynamic"
    }
  },
  "permission": {
    "bird_execute": "ask"
  }
}
  1. 添加 Bird

    将以下内容添加到项目中的 opencode.json,或添加到 ~/.config/opencode/opencode.json 以应用于所有项目。OpenCode 会将每个 MCP 工具加入你的上下文,因此 Bird 的动态端点提供两个工具:search 查找任务对应的操作,execute 执行该操作。

  2. 授权连接

    运行 opencode mcp auth bird 并在浏览器中完成登录。OpenCode 在每次 execute 调用前都会请求确认,因为执行的操作可能会更改你的工作区。

  3. 检查账户

    在执行第一个产品任务之前,让你的代理调用 whoami 并检查当前工作区。返回的身份信息确认登录成功。

几个不错的
起点。

告诉你的智能体目标,让 Bird 提供操作。

排查投递问题
Check my recent email failures. Group them by reason, inspect the affected sending domain, and tell me what needs fixing before making changes.
准备新渠道
Help me set up SMS for order updates. Check my workspace and available senders, explain what is missing, then prepare a test for a number I provide.
查看当前状态
List the Voice calls that are active right now. Separate connected calls from calls that are still ringing, and show their IDs.

在你的第一个任务之前。

让连接真正有用的细节。

连接 MCP 会让我的代理获得不受限的访问权限吗?

不会。这些工具在你持有并在授权时选择委托的权限范围内运行。你可以从 Bird 账户中撤销该连接。

托管 MCP 需要 API 密钥吗?

托管 MCP 使用浏览器登录。你单独部署的应用程序使用其自身的受保护应用凭据。

工具显示正常但调用失败怎么办?

检查客户端的身份验证状态。仅注册服务器 URL 不会完成登录。重新授权 Bird,然后确认你的身份和工作区。

你的下一个创意。
随时连接。