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
Copy file name to clipboardExpand all lines: README.md
+33-6Lines changed: 33 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,13 +8,13 @@ The [Model Context Protocol](https://modelcontextprotocol.io/introduction) (MCP)
8
8
9
9
## Prerequisites
10
10
11
-
You will need Node.js installed on your machine. You can check this by running:
11
+
You will need Node.js ([active LTS](https://nodejs.org/en/about/previous-releases) or newer) installed on your machine. You can check this by running:
12
12
13
13
```shell
14
14
node -v
15
15
```
16
16
17
-
If you don't have Node.js installed, you can download it from [nodejs.org](https://nodejs.org/).
17
+
If you don't have Node.js 22+ installed, you can download it from [nodejs.org](https://nodejs.org/).
18
18
19
19
## Setup
20
20
@@ -289,16 +289,43 @@ The PostgREST MCP server allows you to connect your own users to your app via RE
289
289
290
290
## For developers
291
291
292
-
This repo uses npm for package management, and the latest LTS version of Node.js.
292
+
This repo uses pnpm for package management and the active LTS version of Node.js (see versions pinned in `.nvmrc` and `"packageManager"` in `package.json`).
293
293
294
294
Clone the repo and run:
295
295
296
+
```bash
297
+
pnpm install
296
298
```
297
-
npm install --ignore-scripts
299
+
300
+
To build the MCP server and watch for file changes:
301
+
302
+
```bash
303
+
cd packages/mcp-server-supabase
304
+
pnpm dev
305
+
```
306
+
307
+
Configure your MCP client with the `file:` protocol to run the local build. You may need to restart the server in your MCP client after each change.
0 commit comments