You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
chore: Update CHANGELOG and README for version 0.0.4
- Added version 0.0.4 entry in CHANGELOG.md with patch changes.
- Revised README.md to enhance configuration instructions for Cline MCP and Claude Desktop, including examples for local and remote database setups.
- Removed outdated changeset file related to previous configuration updates.
By default, if no URL is provided, it will use `file:/memory-tool.db` in the current directory.
49
-
50
-
### Claude Desktop Configuration
51
-
52
-
Add this to your Claude Desktop configuration:
20
+
Add this to your Cline MCP settings:
53
21
54
22
```json
55
23
{
56
24
"mcpServers": {
57
-
"memory": {
25
+
"mcp-memory-libsql": {
58
26
"command": "npx",
59
-
"args": ["-y", "mcp-memory-libsql"]
27
+
"args": ["-y", "mcp-memory-libsql"],
28
+
"env": {
29
+
"LIBSQL_URL": "file:/path/to/your/database.db"
30
+
}
60
31
}
61
32
}
62
33
}
63
34
```
64
35
65
-
## Development
66
-
67
-
### Prerequisites
68
-
69
-
- Node.js 22.13.0 or higher
70
-
- pnpm (recommended) or npm
71
-
72
-
### Setup
36
+
### Claude Desktop with WSL Configuration
73
37
74
-
1. Clone the repository:
38
+
For a detailed guide on setting up this server with Claude Desktop in WSL, see [Getting MCP Server Working with Claude Desktop in WSL](https://scottspence.com/posts/getting-mcp-server-working-with-claude-desktop-in-wsl).
0 commit comments