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
- Fix typo: 'enviroment' -> 'environment' in CLAUDE.md
- Update HTTP links to HTTPS in README.md
- Add comprehensive VS Code integration instructions
- Maintain correct internal link references
All improvements re-implemented by Basic Machines team for clean IP ownership.
Copy file name to clipboardExpand all lines: README.md
+34-2Lines changed: 34 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,8 +13,8 @@ Basic Memory lets you build persistent knowledge through natural conversations w
13
13
Claude, while keeping everything in simple Markdown files on your computer. It uses the Model Context Protocol (MCP) to
14
14
enable any compatible LLM to read and write to your local knowledge base.
15
15
16
-
- Website: http://basicmachines.co
17
-
- Documentation: http://memory.basicmachines.co
16
+
- Website: https://basicmachines.co
17
+
- Documentation: https://memory.basicmachines.co
18
18
19
19
## Pick up your conversation right where you left off
20
20
@@ -262,6 +262,38 @@ Examples of relations:
262
262
- documented_in [[Coffee Journal]]
263
263
```
264
264
265
+
## Using with VS Code
266
+
267
+
Add the following JSON block to your User Settings (JSON) file in VS Code. You can do this by pressing `Ctrl + Shift + P` and typing `Preferences: Open User Settings (JSON)`.
268
+
269
+
```json
270
+
{
271
+
"mcp": {
272
+
"servers": {
273
+
"basic-memory": {
274
+
"command": "uvx",
275
+
"args": ["basic-memory", "mcp"]
276
+
}
277
+
}
278
+
}
279
+
}
280
+
```
281
+
282
+
Optionally, you can add it to a file called `.vscode/mcp.json` in your workspace. This will allow you to share the configuration with others.
283
+
284
+
```json
285
+
{
286
+
"servers": {
287
+
"basic-memory": {
288
+
"command": "uvx",
289
+
"args": ["basic-memory", "mcp"]
290
+
}
291
+
}
292
+
}
293
+
```
294
+
295
+
You can use Basic Memory with VS Code to easily retrieve and store information while coding.
296
+
265
297
## Using with Claude Desktop
266
298
267
299
Basic Memory is built using the MCP (Model Context Protocol) and works with the Claude desktop app (https://claude.ai/):
0 commit comments