forked from EricLBuehler/mistral.rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmcp-config-reference.json
More file actions
64 lines (62 loc) · 1.69 KB
/
mcp-config-reference.json
File metadata and controls
64 lines (62 loc) · 1.69 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"_comment": "MCP Client Configuration Reference for mistral.rs",
"servers": [
{
"_comment": "HTTP/HTTPS Server Example - Hugging Face MCP",
"id": "http_server",
"name": "Hugging Face MCP",
"source": {
"type": "Http",
"url": "https://hf.co/mcp",
"timeout_secs": 30,
"headers": {
"User-Agent": "mistral-rs/0.6.0"
}
},
"enabled": false,
"tool_prefix": "hf",
"resources": null,
"bearer_token": "hf_xxx"
},
{
"_comment": "Local Process Server Example - Filesystem (Default)",
"id": "process_server",
"name": "Filesystem Tools",
"source": {
"type": "Process",
"command": "npx",
"args": ["@modelcontextprotocol/server-filesystem", "."],
"work_dir": null,
"env": {
"LOG_LEVEL": "info"
}
},
"enabled": true,
"tool_prefix": "fs",
"resources": ["file://**"],
"bearer_token": null
},
{
"_comment": "WebSocket Server Example",
"id": "websocket_server",
"name": "WebSocket MCP Server",
"source": {
"type": "WebSocket",
"url": "wss://api.example.com/mcp",
"timeout_secs": 30,
"headers": {
"Origin": "https://mistral.rs"
}
},
"enabled": false,
"tool_prefix": "ws",
"resources": null,
"bearer_token": "your-websocket-token"
}
],
"_comment_defaults": "Global settings with recommended defaults:",
"auto_register_tools": true,
"tool_timeout_secs": 30,
"max_concurrent_calls": 5,
"_comment_note": "To install filesystem server: npx @modelcontextprotocol/server-filesystem . -y"
}