Skip to content

Commit 1024e03

Browse files
committed
Add Windows instructions for prerequisites
1 parent cc99acc commit 1024e03

File tree

1 file changed

+25
-11
lines changed

1 file changed

+25
-11
lines changed

quickstart.mdx

Lines changed: 25 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -82,17 +82,31 @@ The communication between the SQLite MCP server and your local SQLite database h
8282
- Git (`git --version` to check)
8383
- SQLite (`sqlite3 --version` to check)
8484

85-
<Accordion title="Need to install the prerequisites?">
86-
```bash
87-
# Using Homebrew
88-
brew install uv git sqlite3
89-
90-
# Or download directly:
91-
# uv: https://docs.astral.sh/uv/
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>
96110

97111
## Installation
98112

0 commit comments

Comments
 (0)