We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3d2dc6 commit 1669a18Copy full SHA for 1669a18
apps/docs/content/_partials/mcp_supabase_config.mdx
@@ -54,6 +54,28 @@
54
}
55
```
56
57
+Or, if using `pnpm` instead of `npm`
58
+
59
+ ```json
60
+ {
61
+ "mcpServers": {
62
+ "supabase": {
63
+ "command": "cmd",
64
+ "args": [
65
+ "/c",
66
+ "pnpm",
67
+ "dlx",
68
+ "@supabase/mcp-server-supabase@latest",
69
+ "--read-only",
70
+ "--project-ref=<project-ref>"
71
+ ],
72
+ "env": {
73
+ "SUPABASE_ACCESS_TOKEN": "<personal-access-token>"
74
+ }
75
76
77
78
+ ```
79
Replace `<project-ref>` with your project ref, and `<personal-access-token>` with your personal access token.
80
81
<Admonition type="note">
0 commit comments