Skip to content

v1.3.3: Agent Integration — OpenAI API + MCP Server + funasr-server CLI

Choose a tag to compare

@LauraGPT LauraGPT released this 23 May 20:35
· 1003 commits to main since this release

Highlights

This release makes FunASR a drop-in speech backend for AI agents.

New: funasr-server CLI

pip install funasr fastapi uvicorn python-multipart
funasr-server --device cuda

One command starts an OpenAI-compatible /v1/audio/transcriptions endpoint.

New: MCP Server

AI assistants (Claude, Cursor, Windsurf) can now transcribe audio directly.

New: OpenAI-Compatible API

Works with any agent framework: LangChain, AutoGen, CrewAI, Dify, Flowise, Open WebUI.

from openai import OpenAI
client = OpenAI(base_url="http://localhost:8000/v1", api_key="x")
result = client.audio.transcriptions.create(model="sensevoice", file=open("a.wav","rb"))

Bug Fixes

  • Fixed hub="hf" parameter propagation to sub-models (v1.3.2)
  • Fixed Qwen3-ASR ImportError masking

Upgrade

pip install --upgrade funasr

Links