-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.mcp.json.example
More file actions
72 lines (72 loc) · 2.29 KB
/
.mcp.json.example
File metadata and controls
72 lines (72 loc) · 2.29 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
{
"mcpServers": {
"quantstack": {
"type": "stdio",
"command": "/path/to/venv/bin/quantstack-mcp",
"cwd": "/path/to/repo",
"env": {
"TRADER_PG_URL": "postgresql://localhost/quantpod"
}
},
"quantstack-execution": {
"type": "stdio",
"command": "/path/to/venv/bin/quantstack-execution",
"cwd": "/path/to/repo",
"env": { "TRADER_PG_URL": "postgresql://localhost/quantpod" }
},
"quantstack-portfolio": {
"type": "stdio",
"command": "/path/to/venv/bin/quantstack-portfolio",
"cwd": "/path/to/repo",
"env": { "TRADER_PG_URL": "postgresql://localhost/quantpod" }
},
"quantstack-signals": {
"type": "stdio",
"command": "/path/to/venv/bin/quantstack-signals",
"cwd": "/path/to/repo",
"env": { "TRADER_PG_URL": "postgresql://localhost/quantpod" }
},
"quantstack-data": {
"type": "stdio",
"command": "/path/to/venv/bin/quantstack-data",
"cwd": "/path/to/repo",
"env": { "TRADER_PG_URL": "postgresql://localhost/quantpod" }
},
"quantstack-research": {
"type": "stdio",
"command": "/path/to/venv/bin/quantstack-research",
"cwd": "/path/to/repo",
"env": { "TRADER_PG_URL": "postgresql://localhost/quantpod" }
},
"quantstack-options": {
"type": "stdio",
"command": "/path/to/venv/bin/quantstack-options",
"cwd": "/path/to/repo",
"env": { "TRADER_PG_URL": "postgresql://localhost/quantpod" }
},
"quantstack-ml": {
"type": "stdio",
"command": "/path/to/venv/bin/quantstack-ml",
"cwd": "/path/to/repo",
"env": { "TRADER_PG_URL": "postgresql://localhost/quantpod" }
},
"quantstack-finrl": {
"type": "stdio",
"command": "/path/to/venv/bin/quantstack-finrl",
"cwd": "/path/to/repo",
"env": { "TRADER_PG_URL": "postgresql://localhost/quantpod" }
},
"quantstack-intel": {
"type": "stdio",
"command": "/path/to/venv/bin/quantstack-intel",
"cwd": "/path/to/repo",
"env": { "TRADER_PG_URL": "postgresql://localhost/quantpod" }
},
"quantstack-risk": {
"type": "stdio",
"command": "/path/to/venv/bin/quantstack-risk",
"cwd": "/path/to/repo",
"env": { "TRADER_PG_URL": "postgresql://localhost/quantpod" }
}
}
}