-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathopencode.jsonc
More file actions
51 lines (51 loc) · 1.59 KB
/
opencode.jsonc
File metadata and controls
51 lines (51 loc) · 1.59 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
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"git": {
"type": "local",
"command": ["uvx", "mcp-server-git", "--repository", "/data/Code/streamweave"],
"enabled": true
},
"serena": {
"type": "local",
"command": ["uvx", "--from", "git+https://github.com/oraios/serena", "serena", "start-mcp-server"],
"enabled": true
},
"think": {
"type": "local",
"command": ["uvx", "mcp-think-tool"],
"enabled": true
},
"context7": {
"type": "remote",
"url": "https://mcp.context7.com/mcp",
"enabled": true
},
"memory": {
"type": "local",
"command": ["npx", "-y", "@modelcontextprotocol/server-memory"],
"enabled": true
},
"task-master-ai": {
"type": "local",
"command": ["npx", "-y", "--package=task-master-ai", "task-master-ai"],
"enabled": true,
"environment": {
"ANTHROPIC_API_KEY": "{env:ANTHROPIC_API_KEY}",
"PERPLEXITY_API_KEY": "{env:PERPLEXITY_API_KEY}",
"OPENAI_API_KEY": "{env:OPENAI_API_KEY}",
"GOOGLE_API_KEY": "{env:GOOGLE_API_KEY}",
"XAI_API_KEY": "{env:XAI_API_KEY}",
"OPENROUTER_API_KEY": "{env:OPENROUTER_API_KEY}",
"MISTRAL_API_KEY": "{env:MISTRAL_API_KEY}",
"AZURE_OPENAI_API_KEY": "{env:AZURE_OPENAI_API_KEY}",
"OLLAMA_API_KEY": "{env:OLLAMA_API_KEY}"
}
},
"chrome-devtools": {
"type": "local",
"command": ["bash", "-c", "npx -y chrome-devtools-mcp@latest --executablePath /run/current-system/sw/bin/chromium --isolated"],
"enabled": true
}
}
}