From b2bad3f2c6e86666bf55ccaedf207f7988c6b260 Mon Sep 17 00:00:00 2001 From: Justin Spahr-Summers Date: Mon, 25 Nov 2024 15:27:18 -0600 Subject: [PATCH 1/3] Replace Node prerequisite with `uv` --- quickstart.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/quickstart.mdx b/quickstart.mdx index 16baf49..bb2af2c 100644 --- a/quickstart.mdx +++ b/quickstart.mdx @@ -78,17 +78,17 @@ The communication between the SQLite MCP server and your local SQLite database h - macOS or Windows - The latest version of [Claude Desktop](https://claude.ai/download) installed -- Node.js v18 or higher (`node --version` to check) +- [uv](https://docs.astral.sh/uv/) 0.4.18 or higher (`uv --version` to check) - Git (`git --version` to check) - SQLite (`sqlite3 --version` to check) ```bash # Using Homebrew -brew install node git sqlite3 +brew install uv git sqlite3 # Or download directly: -# Node.js: https://nodejs.org +# uv: https://docs.astral.sh/uv/ # Git: https://git-scm.com # SQLite: https://www.sqlite.org/download.html ``` From cc99acca615d0c2f6f7eaff38a339a9966bea403 Mon Sep 17 00:00:00 2001 From: Justin Spahr-Summers Date: Mon, 25 Nov 2024 15:27:24 -0600 Subject: [PATCH 2/3] Note that Node is required for other examples --- quickstart.mdx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/quickstart.mdx b/quickstart.mdx index bb2af2c..2640432 100644 --- a/quickstart.mdx +++ b/quickstart.mdx @@ -320,6 +320,10 @@ Now that MCP is working, try these increasingly powerful examples: Want to give Claude Desktop more local integration capabilities? Add these servers to your configuration: + + Note that these MCP servers will require [Node.js](https://nodejs.org/en) to be installed on your machine. + + Add this to your config to let Claude Desktop read and analyze files: From 1024e03f83aa0b8badde9b50dfee4d2e4e7f9446 Mon Sep 17 00:00:00 2001 From: Justin Spahr-Summers Date: Mon, 25 Nov 2024 15:31:35 -0600 Subject: [PATCH 3/3] Add Windows instructions for prerequisites --- quickstart.mdx | 36 +++++++++++++++++++++++++----------- 1 file changed, 25 insertions(+), 11 deletions(-) diff --git a/quickstart.mdx b/quickstart.mdx index 2640432..240d645 100644 --- a/quickstart.mdx +++ b/quickstart.mdx @@ -82,17 +82,31 @@ The communication between the SQLite MCP server and your local SQLite database h - Git (`git --version` to check) - SQLite (`sqlite3 --version` to check) - -```bash -# Using Homebrew -brew install uv git sqlite3 - -# Or download directly: -# uv: https://docs.astral.sh/uv/ -# Git: https://git-scm.com -# SQLite: https://www.sqlite.org/download.html -``` - + + + ```bash + # Using Homebrew + brew install uv git sqlite3 + + # Or download directly: + # uv: https://docs.astral.sh/uv/ + # Git: https://git-scm.com + # SQLite: https://www.sqlite.org/download.html + ``` + + + ```powershell + # Using winget + winget install --id=astral-sh.uv -e + winget install git.git sqlite.sqlite + + # Or download directly: + # uv: https://docs.astral.sh/uv/ + # Git: https://git-scm.com + # SQLite: https://www.sqlite.org/download.html + ``` + + ## Installation