voice-mcp-server 0.1.2 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "voice-mcp-server",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "An MCP server to allow LLMs to speak and listen via bidirectional voice loops",
5
5
  "main": "build/index.js",
6
6
  "type": "module",
package/src/mcp_server.py CHANGED
@@ -154,8 +154,8 @@ async def render_visualizer(ctx: Context):
154
154
  try:
155
155
  while True:
156
156
  spectrum = "".join(random.choice(bars) for _ in range(12))
157
- await ctx.report_progress(100, 100, message=f"🎙️ {spectrum} 🎙️")
158
- await asyncio.sleep(0.1)
157
+ await ctx.info(f"🎙️ {spectrum} 🎙️")
158
+ await asyncio.sleep(0.5) # Slower so we don't spam the UI logs too much
159
159
  except asyncio.CancelledError:
160
160
  pass
161
161