-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathserver.json
More file actions
46 lines (46 loc) · 1.55 KB
/
Copy pathserver.json
File metadata and controls
46 lines (46 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.modelscope/funasr-mcp",
"title": "FunASR",
"description": "Transcribe local audio with FunASR and SenseVoice using private, on-device inference.",
"version": "0.1.1",
"websiteUrl": "https://github.com/modelscope/FunASR/tree/main/examples/mcp_server",
"repository": {
"url": "https://github.com/modelscope/FunASR",
"source": "github",
"id": "569959091",
"subfolder": "examples/mcp_server"
},
"packages": [
{
"registryType": "oci",
"identifier": "ghcr.io/modelscope/funasr-mcp:0.1.1",
"runtimeHint": "docker",
"runtimeArguments": [
{
"type": "named",
"name": "--mount",
"description": "Mount the host audio directory read-only at /audio in the container.",
"value": "type=bind,src={audio_directory},dst=/audio,readonly",
"variables": {
"audio_directory": {
"description": "Host directory containing audio files. Use /audio/<file> when calling the tool.",
"format": "filepath",
"isRequired": true,
"placeholder": "/path/to/audio"
}
}
},
{
"type": "named",
"name": "--mount",
"description": "Persist downloaded ModelScope model files between container runs.",
"value": "type=volume,src=funasr-mcp-cache,dst=/root/.cache/modelscope"
}
],
"transport": {
"type": "stdio"
}
}
]
}