-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmcp.example.json
More file actions
32 lines (32 loc) · 1.03 KB
/
Copy pathmcp.example.json
File metadata and controls
32 lines (32 loc) · 1.03 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
{
"mcpServers": {
"engram": {
"command": "node",
"args": [
"-e",
"const { spawn } = require('node:child_process'); const bin = process.env.ENGRAM_BIN || 'engram'; const child = spawn(bin, ['mcp', '--tools=agent'], { stdio: 'inherit' }); child.on('error', () => process.exit(127)); child.on('exit', (code, signal) => { if (typeof code === 'number') process.exit(code); process.kill(process.pid, signal || 'SIGTERM'); });"
],
"lifecycle": "lazy",
"directTools": false
},
"coolify": {
"command": "npx",
"args": ["-y", "@masonator/coolify-mcp"],
"env": {
"COOLIFY_BASE_URL": "https://coolify.tudominio.com",
"COOLIFY_ACCESS_TOKEN": "tu-api-token-aqui"
}
},
"context7": {
"command": "npx",
"args": ["-y", "@upstash/context7-mcp@latest"]
},
"github": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-github"],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "tu-token-de-github"
}
}
}
}