-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopencode.json.example
More file actions
110 lines (102 loc) · 2.09 KB
/
Copy pathopencode.json.example
File metadata and controls
110 lines (102 loc) · 2.09 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"$schema": "https://opencode.ai/config.json",
"instructions": [
"AGENTS.md"
],
"mcp": {
"context7": {
"type": "remote",
"url": "https://mcp.context7.com/mcp",
"headers": {
"CONTEXT7_API_KEY": "{env:CONTEXT7_API_KEY}"
},
"enabled": true
},
"mongodb": {
"type": "local",
"command": [
"npx",
"-y",
"mongodb-mcp-server@latest",
"--readOnly",
"--connectionString",
"mongodb://localhost:27017"
],
"enabled": true
},
"grafana": {
"type": "local",
"command": [
"uvx",
"mcp-grafana"
],
"environment": {
"GRAFANA_URL": "http://localhost:3000",
"GRAFANA_SERVICE_ACCOUNT_TOKEN": "{env:GRAFANA_SERVICE_ACCOUNT_TOKEN}"
},
"enabled": true
},
"playwright": {
"type": "local",
"command": [
"npx",
"@playwright/mcp@latest"
],
"enabled": true
},
"chrome-devtools": {
"type": "local",
"command": [
"npx",
"-y",
"chrome-devtools-mcp@latest"
],
"enabled": true
},
"redis": {
"type": "local",
"command": [
"uvx",
"--from",
"redis-mcp-server@latest",
"redis-mcp-server",
"--url",
"redis://localhost:6379/0"
],
"enabled": true
},
"sonarqube": {
"type": "local",
"command": [
"docker",
"run",
"--init",
"--pull=always",
"-i",
"--rm",
"-e",
"SONARQUBE_TOKEN",
"-e",
"SONARQUBE_URL",
"mcp/sonarqube"
],
"environment": {
"SONARQUBE_TOKEN": "{env:SONARQUBE_TOKEN}",
"SONARQUBE_URL": "http://localhost:9000"
},
"enabled": true
},
"n8n": {
"type": "local",
"command": [
"npx",
"n8n-mcp"
],
"environment": {
"N8N_API_URL": "http://localhost:5678",
"N8N_API_KEY": "{env:N8N_API_KEY}"
},
"enabled": true
}
}
}