-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathllm_mcp_config.json5
71 lines (71 loc) · 2.35 KB
/
llm_mcp_config.json5
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
65
66
67
68
69
70
71
// The configuration file format is [JSON5](https://json5.org/),
// where comments and trailing commas are allowed.
// The file format is further extended to replace `${...}` notations
// with the values of corresponding environment variables.
// Keep all the credentials and private into the `.env` file
// and refer to them with `${...}` notation as needed.
{
// "llm": {
// "model_provider": "anthropic",
// "model": "claude-3-5-haiku-latest",
// "temperature": 0.0,
// "max_tokens": 1000,
// },
"llm": {
"model_provider": "openai",
"model": "gpt-4o-mini",
"temperature": 0.0,
"max_tokens": 1000,
},
// "llm": {
// "model_provider": "groq",
// "model": "llama-3.1-8b-instant",
// "temperature": 0.0,
// "max_tokens": 1000,
// },
"example_queries": [
"Tomorrow's weather in SF?",
"Read and briefly summarize the LICENSE file",
"Read the news headlines on bbc.com",
],
"mcp_servers": {
// https://github.com/modelcontextprotocol/servers/tree/main/src/filesystem
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"."
]
},
// https://github.com/modelcontextprotocol/servers/tree/main/src/fetch
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
},
// https://github.com/modelcontextprotocol/quickstart-resources/tree/main/weather-server-python
"weather": {
"command": "npx",
"args": [
"-y",
"@h1deya/mcp-server-weather"
]
},
// // https://github.com/modelcontextprotocol/servers/tree/main/src/puppeteer
// "puppeteer": {
// "command": "npx",
// "args": ["-y", "@modelcontextprotocol/server-puppeteer"]
// },
// // https://github.com/modelcontextprotocol/servers/tree/main/src/brave-search
// "brave-search": {
// "command": "npx",
// "args": [
// "-y",
// "@modelcontextprotocol/server-brave-search"
// ],
// "env": {
// "BRAVE_API_KEY": "${BRAVE_API_KEY}"
// }
// },
}
}