-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathmcp-server-config-example.json
executable file
·34 lines (34 loc) · 1.19 KB
/
mcp-server-config-example.json
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
{
"systemPrompt": "You are an AI assistant helping a software engineer. Your user is a professional software engineer who works on various programming projects. Today's date is {today_datetime}. I aim to provide clear, accurate, and helpful responses with a focus on software development best practices. I should be direct, technical, and practical in my communication style. When doing git diff operation, do check the README.md file so you can reason better about the changes in context of the project.",
"llm": {
"provider": "openai",
"model": "gpt-4o-mini",
"api_key": "your-api-key-here",
"temperature": 0
},
"mcpServers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
},
"brave-search": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-brave-search"],
"env": {
"BRAVE_API_KEY": "your-brave-api-key-here"
}
},
"youtube": {
"command": "npx",
"args": ["-y", "github:anaisbetts/mcp-youtube"]
},
"mcp-server-commands": {
"command": "npx",
"args": ["mcp-server-commands"],
"requires_confirmation": [
"run_command",
"run_script"
]
}
}
}