@@ -78,21 +78,35 @@ The communication between the SQLite MCP server and your local SQLite database h
78
78
79
79
- macOS or Windows
80
80
- The latest version of [ Claude Desktop] ( https://claude.ai/download ) installed
81
- - Node.js v18 or higher (` node --version` to check)
81
+ - [ uv ] ( https://docs.astral.sh/uv/ ) 0.4.18 or higher (` uv --version` to check)
82
82
- Git (` git --version ` to check)
83
83
- SQLite (` sqlite3 --version ` to check)
84
84
85
- <Accordion title = " Need to install the prerequisites?" >
86
- ``` bash
87
- # Using Homebrew
88
- brew install node git sqlite3
89
-
90
- # Or download directly:
91
- # Node.js: https://nodejs.org
92
- # Git: https://git-scm.com
93
- # SQLite: https://www.sqlite.org/download.html
94
- ```
95
- </Accordion >
85
+ <AccordionGroup >
86
+ <Accordion title = " Installing prerequisites (macOS)" >
87
+ ``` bash
88
+ # Using Homebrew
89
+ brew install uv git sqlite3
90
+
91
+ # Or download directly:
92
+ # uv: https://docs.astral.sh/uv/
93
+ # Git: https://git-scm.com
94
+ # SQLite: https://www.sqlite.org/download.html
95
+ ```
96
+ </Accordion >
97
+ <Accordion title = " Installing prerequisites (Windows)" >
98
+ ``` powershell
99
+ # Using winget
100
+ winget install --id=astral-sh.uv -e
101
+ winget install git.git sqlite.sqlite
102
+
103
+ # Or download directly:
104
+ # uv: https://docs.astral.sh/uv/
105
+ # Git: https://git-scm.com
106
+ # SQLite: https://www.sqlite.org/download.html
107
+ ```
108
+ </Accordion >
109
+ </AccordionGroup >
96
110
97
111
## Installation
98
112
@@ -320,6 +334,10 @@ Now that MCP is working, try these increasingly powerful examples:
320
334
321
335
Want to give Claude Desktop more local integration capabilities? Add these servers to your configuration:
322
336
337
+ <Note>
338
+ Note that these MCP servers will require [Node.js](https://nodejs.org/en) to be installed on your machine.
339
+ </Note>
340
+
323
341
<AccordionGroup>
324
342
<Accordion title="File System Access" icon="folder-open">
325
343
Add this to your config to let Claude Desktop read and analyze files:
0 commit comments