-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.mcp.json.example
More file actions
51 lines (51 loc) · 1.09 KB
/
.mcp.json.example
File metadata and controls
51 lines (51 loc) · 1.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
{
"mcpServers": {
"agent-comm": {
"type": "stdio",
"command": "npx",
"args": ["@jerfowler/agent-comm-mcp-server"],
"env": {
"AGENT_COMM_DIR": "./comm",
"AGENT_COMM_ARCHIVE_DIR": "./comm/.archive",
"AGENT_COMM_LOG_DIR": "./comm/.logs",
"AGENT_COMM_DISABLE_ARCHIVE": "false"
}
},
"Ref": {
"type": "http",
"url": "https://api.ref.tools/mcp?apiKey=YOUR_REF_API_KEY_HERE"
},
"serena": {
"type": "stdio",
"command": "uvx",
"args": [
"--from",
"git+https://github.com/oraios/serena",
"serena",
"start-mcp-server",
"--context",
"ide-assistant",
"--project",
"."
],
"env": {}
},
"sequential-thinking": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
],
"env": {}
},
"playwright": {
"type": "stdio",
"command": "npx",
"args": [
"@playwright/mcp@latest"
],
"env": {}
}
}
}