v1.3.3

modelscope/FunASRv1.3.3May 23, 2026by LauraGPT

AI Summary

This release makes FunASR a drop-in speech backend for AI agents by introducing a CLI, MCP server, and OpenAI-compatible API.

Key Highlights

  • New `funasr-server` CLI for easy deployment.
  • MCP Server support for Claude, Cursor, and Windsurf.
  • OpenAI-compatible `/v1/audio/transcriptions` endpoint.
  • Fixed Qwen3-ASR ImportError.

New Features

  • funasr-server CLI
  • MCP Server
  • OpenAI API compatibility
  • Qwen3-ASR fix

Full Release Notes

## Highlights

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

### New: `funasr-server` CLI
```bash
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.

```python
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
```bash
pip install --upgrade funasr
```

### Links
- [Agent Integration Guide](https://modelscope.github.io/FunASR/agent.html)
- [OpenAI API Docs](https://github.com/modelscope/FunASR/tree/main/examples/openai_api)
- [MCP Server Docs](https://github.com/modelscope/FunASR/tree/main/examples/mcp_server)
- [Benchmark](https://modelscope.github.io/FunASR/benchmark.html)