-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopencode.json
More file actions
31 lines (31 loc) · 777 Bytes
/
opencode.json
File metadata and controls
31 lines (31 loc) · 777 Bytes
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
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"firecrawl-mcp": {
"type": "local",
"command": [
"bash",
"-c",
"source $HOME/.nvm/nvm.sh && nvm use default > /dev/null && npx -y firecrawl-mcp"
],
"enabled": true,
"environment": {
"FIRECRAWL_API_URL": "http://localhost:3002",
"FIRECRAWL_API_KEY": "not-needed-locally"
}
},
"docker": {
"type": "local",
"enabled": true,
"command": [
"bash",
"-c",
"source $HOME/.nvm/nvm.sh && nvm use default > /dev/null && npx -y mcp-server-docker"
],
"environment": {
"DOCKER_HOST": "unix:///var/run/docker.sock",
"PATH": "/usr/local/bin:/usr/bin:/bin"
}
}
}
}