Skip to content

Commit 1c95e2b

Browse files
authored
Merge pull request #158 from Rodriguespn/feature/quick-config-ides
docs: add quick install button to README for Cursor and VSCode
2 parents 38d7016 + 9c45532 commit 1c95e2b

File tree

1 file changed

+54
-0
lines changed

1 file changed

+54
-0
lines changed

README.md

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,60 @@ Your MCP client will automatically prompt you to login to Supabase during setup.
3636

3737
For more information, visit the [Supabase MCP docs](https://supabase.com/docs/guides/getting-started/mcp).
3838

39+
You can also manually install it on your favorite client.
40+
41+
<details>
42+
<summary>Cursor</summary>
43+
44+
#### Click the button to install:
45+
46+
[<img src="https://cursor.com/deeplink/mcp-install-dark.svg" alt="Install in Cursor">](https://cursor.com/en/install-mcp?name=Supabase&config=eyJ1cmwiOiJodHRwczovL21jcC5zdXBhYmFzZS5jb20vbWNwIn0%3D)
47+
48+
#### Or install manually:
49+
50+
Go to `Cursor Settings``MCP``Add new MCP Server`. Name to your liking, use `type: http` and the following config:
51+
52+
```json
53+
{
54+
"mcpServers": {
55+
"supabase": {
56+
"type": "http",
57+
"url": "https://mcp.supabase.com/mcp"
58+
}
59+
}
60+
}
61+
```
62+
63+
For more information, see the [Cursor MCP docs](https://docs.cursor.com/context/mcp).
64+
65+
</details>
66+
67+
<details>
68+
<summary>VS Code</summary>
69+
70+
#### Click the button to install:
71+
72+
[<img src="https://img.shields.io/badge/VS_Code-VS_Code?style=flat-square&label=Install%20Server&color=0098FF" alt="Install in VS Code">](https://vscode.dev/redirect?url=vscode:mcp/install%3F%7B%22name%22%3A%22Supabase%22%2C%22type%22%3A%22http%22%2C%22url%22%3A%22https%3A%2F%2Fmcp.supabase.com%2Fmcp%22%7D) [<img alt="Install in VS Code Insiders" src="https://img.shields.io/badge/VS_Code_Insiders-VS_Code_Insiders?style=flat-square&label=Install%20Server&color=24bfa5">](https://insiders.vscode.dev/redirect?url=vscode-insiders:mcp/install%3F%7B%22name%22%3A%22Supabase%22%2C%22type%22%3A%22http%22%2C%22url%22%3A%22https%3A%2F%2Fmcp.supabase.com%2Fmcp%22%7D)
73+
74+
#### Or install manually:
75+
76+
Open (or create) your `mcp.json` file and add:
77+
78+
```json
79+
{
80+
"servers": {
81+
"supabase": {
82+
"type": "http",
83+
"url": "https://mcp.supabase.com/mcp"
84+
}
85+
}
86+
}
87+
```
88+
89+
For more information, see the [VS Code MCP docs](https://code.visualstudio.com/docs/copilot/customization/mcp-servers#_add-an-mcp-server).
90+
91+
</details>
92+
3993
## Options
4094

4195
The following options are configurable as URL query parameters:

0 commit comments

Comments
 (0)