-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmcp.json
More file actions
58 lines (58 loc) · 1.47 KB
/
mcp.json
File metadata and controls
58 lines (58 loc) · 1.47 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
{
"mcpServers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
],
"env": {
"MCP_MEMORY_STORAGE_PATH": "./trained_data/.memory"
}
},
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"./trained_data",
"./logs"
]
},
"sequential-thinking": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
]
}
},
"entityTypes": {
"scan_result": {
"description": "Pair scan results with confidence scores",
"ttlDays": 7,
"fields": ["pair", "direction", "confidence", "volatility_percentile", "trend_strength", "timestamp"]
},
"training_session": {
"description": "Model training session with metrics and hyperparameters",
"ttlDays": null,
"fields": ["pair", "models_trained", "metrics", "hyperparams", "duration_seconds", "timestamp"]
},
"model_state": {
"description": "Current model state and version tracking",
"ttlDays": null,
"fields": ["model_name", "accuracy", "trained_pairs", "version", "last_updated"]
}
},
"mcp": {
"servers": {
"context7": {
"type": "http",
"url": "https://mcp.context7.com/mcp",
"headers": {
"CONTEXT7_API_KEY": "ctx7sk-8a6a8955-6ae2-4755-a1aa-1fe88ece54c8"
}
}
}
}
}