-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmcp_claude_desktop.json
More file actions
33 lines (33 loc) · 1.01 KB
/
mcp_claude_desktop.json
File metadata and controls
33 lines (33 loc) · 1.01 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
{
"_comment": "Claude Desktop MCP configuration for Synaptic Memory. Copy the mcpServers block into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\\Claude\\claude_desktop_config.json (Windows). Replace ABSOLUTE_PATH_TO_DB with the full path to your knowledge.db file. Restart Claude Desktop after saving.",
"mcpServers": {
"synaptic": {
"command": "synaptic-mcp",
"args": [
"--db",
"ABSOLUTE_PATH_TO_DB/knowledge.db"
]
},
"synaptic-with-embedding": {
"command": "synaptic-mcp",
"args": [
"--db",
"ABSOLUTE_PATH_TO_DB/knowledge.db",
"--embed-url",
"http://localhost:11434/v1"
],
"env": {
"SYNAPTIC_EMBED_MODEL": "qwen3-embedding:4b"
}
},
"synaptic-with-cdc": {
"command": "synaptic-mcp",
"args": [
"--db",
"ABSOLUTE_PATH_TO_DB/knowledge.db",
"--source-dsn",
"postgresql://user:password@localhost:5432/mydb"
]
}
}
}