npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

openclaw-mydazy-mcp

v0.6.6

Published

OpenClaw plugin — connect agents to MyDazy voice devices via MCP relay with TTS push

Downloads

1,501

Readme

🦞 mydazy-mcp

English | 中文

一句话让 AI 帮你干活,干完了自动语音汇报。

用AI搭子MyDazy说一句"小龙虾帮我查一下今天的日程",AI 在后台执行,完成后AI搭子MyDazy自动播报结果。无需盯屏幕,无需动手,张嘴就行。


它能做什么

你:"搭子精灵,小龙虾帮我看看邮箱有没有新邮件"
AI搭子:"好的,小龙虾收到了"
         ... AI 后台执行中 ...
AI搭子:"小龙虾有结果了。你有 3 封未读邮件,第一封是张三发的关于项目进度的..."

所有 OpenClaw Agent 能做的事,你都可以用语音下达:查日程、发消息、搜信息、写代码、控制 Mac 应用…… 说完就走,结果自动送到耳边。

当前版本按单设备闭环设计:一台 mydazy 设备负责发起任务和接收结果,不做多设备路由。


30 秒上手

第一步:安装

npm install -g openclaw-mydazy-mcp

第二步:配置

openclaw-mydazy-mcp setup

按提示填入 3 个参数:

🦞 mydazy-mcp 配置向导

Step 1/3 — MCP 地址
  打开 mydazy 小程序 → 设备页面 → 复制 MCP 地址
MCP 地址 (wss://...): wss://api.xiaozhi.me/mcp/?token=...

Step 2/3 — Webhook 地址
  打开 mydazy 小程序 → Bot 页面 → 复制 Webhook 地址
Webhook 地址 (https://...): https://www.mydazy.cn/v1/ota/pushtts?token=...

Step 3/3 — 默认 Agent (可选)
  执行任务的 OpenClaw Agent ID,默认 "main"
Agent ID [main]:

✅ 配置完成!

配置完成后重启 Gateway:openclaw gateway restart

查看配置状态:openclaw-mydazy-mcp status 查看运行状态:openclaw plugins info openclaw-mydazy-mcp 重新配置:openclaw-mydazy-mcp setup 也可以在 OpenClaw Dashboard 中配置插件参数。


使用示例

| 你说 | AI 做了什么 | AI搭子播报 | |------|------------|---------| | 小龙虾帮我看看今天有什么日程 | 读取 Mac 日历 | "你今天有 3 个会议,上午 10 点产品评审..." | | 小龙虾给张三发消息说我晚点到 | 发送 iMessage | "已经给张三发了消息" | | 小龙虾今天 A 股怎么样 | 搜索实时行情 | "上证指数今天涨了 0.8%..." | | 小龙虾帮我打开 Figma | 启动 Mac 应用 | "Figma 已打开" |

触发词:"小龙虾"是指令前缀,不是唤醒词。先说"搭子精灵"唤醒 AI搭子,再说"小龙虾帮我..."。


工作原理

语音指令 → MyDazy设备 → MCP 请求 → mydazy-mcp → OpenClaw Agent 执行
                                                       ↓
语音播报 ← MyDazy设备 ← Webhook 推送 ← 结果口语化 ← 任务完成

5 个 MCP 工具

| 工具 | 用途 | |------|------| | send_task | 提交任务,AI 后台执行 | | get_results | 拉取已完成任务的结果 | | task_status | 查询最近任务或指定任务的进度 | | push_notification | 直接推送一条语音消息 | | check_service | 检查小龙虾服务是否在线 |


配置

填 2 个地址即可使用,Agent 和超时可选配置:

| 字段 | 必填 | 默认值 | 说明 | |------|------|--------|------| | mcpServerUrl | ✅ | — | 小程序「设备」页面获取 | | webhookUrl | ✅ | — | 小程序「Bot」页面获取 | | defaultAgent | | "main" | 执行任务的 OpenClaw Agent ID | | taskTimeoutMs | | 120000 | 任务超时时间(毫秒) |


卸载

脚本安装的卸载

curl -fsSL https://raw.githubusercontent.com/ahelpercn/mydazy-mcp/main/uninstall.sh | bash

npm 安装的卸载

npm uninstall openclaw-mydazy-mcp

常见问题

插件加载失败? — 运行 openclaw plugins info openclaw-mydazy-mcp 查看错误详情。常见原因是插件 ID 不匹配,升级到最新版本即可。

设备没有收到播报? — 检查 webhookUrl 是否正确,在小程序 Bot 页面重新复制。运行 openclaw plugins info openclaw-mydazy-mcp 确认插件 Status 为 loaded

任务超时? — 默认 120 秒,复杂任务可调大 taskTimeoutMs

语音识别不准? — 系统提示词已内置"小龙虾"的常见误识别词(小笼虾、小龙侠等),会自动纠正。


获取MyDazy设备

还没有 MyDazy 设备?扫码进入 mydazy 小程序了解更多,或直接购买支持 MCP 的 MyDazy 设备。

微信搜索「mydazy」小程序 → 注册 → 绑定设备 → 开始体验


License

MIT