@universal-mcp-toolkit/server-supabase 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,36 +1,36 @@
1
- {
2
- "$schema": "https://json.schemastore.org/json",
3
- "name": "supabase",
4
- "title": "Supabase MCP Server",
5
- "description": "Database, auth, storage, and function tools for Supabase.",
6
- "version": "0.1.0",
7
- "transports": [
8
- "stdio",
9
- "http+sse"
10
- ],
11
- "authentication": {
12
- "mode": "environment-variables",
13
- "required": [
14
- "SUPABASE_URL",
15
- "SUPABASE_KEY"
16
- ]
17
- },
18
- "capabilities": {
19
- "tools": true,
20
- "resources": true,
21
- "prompts": true
22
- },
23
- "packageName": "@universal-mcp-toolkit/server-supabase",
24
- "homepage": "https://github.com/universal-mcp-toolkit/universal-mcp-toolkit#readme",
25
- "tools": [
26
- "list-tables",
27
- "query-table",
28
- "list-storage-buckets"
29
- ],
30
- "resources": [
31
- "project-overview"
32
- ],
33
- "prompts": [
34
- "incident-response"
35
- ]
36
- }
1
+ {
2
+ "$schema": "https://json.schemastore.org/json",
3
+ "name": "supabase",
4
+ "title": "Supabase MCP Server",
5
+ "description": "Database, auth, storage, and function tools for Supabase.",
6
+ "version": "0.1.0",
7
+ "transports": [
8
+ "stdio",
9
+ "http+sse"
10
+ ],
11
+ "authentication": {
12
+ "mode": "environment-variables",
13
+ "required": [
14
+ "SUPABASE_URL",
15
+ "SUPABASE_KEY"
16
+ ]
17
+ },
18
+ "capabilities": {
19
+ "tools": true,
20
+ "resources": true,
21
+ "prompts": true
22
+ },
23
+ "packageName": "@universal-mcp-toolkit/server-supabase",
24
+ "homepage": "https://github.com/universal-mcp-toolkit/universal-mcp-toolkit#readme",
25
+ "tools": [
26
+ "list-tables",
27
+ "query-table",
28
+ "list-storage-buckets"
29
+ ],
30
+ "resources": [
31
+ "project-overview"
32
+ ],
33
+ "prompts": [
34
+ "incident-response"
35
+ ]
36
+ }
package/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2026 universal-mcp-toolkit
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2026 universal-mcp-toolkit
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,47 @@
1
+ Use this server to browse Supabase tables and storage from Claude or Cursor.
2
+
3
+ ## What it can do
4
+ - `list-storage-buckets`: shows the storage buckets in your Supabase project.
5
+ - `list-tables`: shows the tables in a schema, usually `public`.
6
+ - `query-table`: reads rows from a table with filters, sorting, and a row limit.
7
+
8
+ ## Setup
9
+ Set these env vars before you start:
10
+ - `SUPABASE_URL`: your project URL from Supabase Project Settings → API: https://supabase.com/dashboard/project/_/settings/api
11
+ - `SUPABASE_KEY`: your API key from Supabase Project Settings → API Keys: https://supabase.com/docs/guides/api/api-keys
12
+
13
+ ## Claude Desktop config
14
+ ```json
15
+ {
16
+ "mcpServers": {
17
+ "supabase": {
18
+ "command": "npx",
19
+ "args": ["-y", "@universal-mcp-toolkit/server-supabase@latest"],
20
+ "env": {
21
+ "SUPABASE_URL": "https://your-project-ref.supabase.co",
22
+ "SUPABASE_KEY": "your-supabase-key"
23
+ }
24
+ }
25
+ }
26
+ }
27
+ ```
28
+
29
+ ## Cursor config
30
+ ```json
31
+ {
32
+ "mcpServers": {
33
+ "supabase": {
34
+ "command": "npx",
35
+ "args": ["-y", "@universal-mcp-toolkit/server-supabase@latest"],
36
+ "env": {
37
+ "SUPABASE_URL": "https://your-project-ref.supabase.co",
38
+ "SUPABASE_KEY": "your-supabase-key"
39
+ }
40
+ }
41
+ }
42
+ }
43
+ ```
44
+
45
+ ## Quick example
46
+ Ask Claude:
47
+ > Look at the `public.orders` table in my Supabase project. Show me the 10 newest rows where `status` is `failed`, then list my storage buckets so I can check where related files might live.
package/package.json CHANGED
@@ -1,18 +1,17 @@
1
1
  {
2
2
  "name": "@universal-mcp-toolkit/server-supabase",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "type": "module",
5
5
  "description": "Database, auth, storage, and function tools for Supabase.",
6
6
  "license": "MIT",
7
7
  "bin": {
8
- "server-supabase": "./dist/index.js",
9
8
  "umt-supabase": "./dist/index.js"
10
9
  },
11
10
  "repository": {
12
11
  "type": "git",
13
- "url": "git+https://github.com/Markgatcha/universal-mcp-toolkit.git"
12
+ "url": "git+https://github.com/universal-mcp-toolkit/universal-mcp-toolkit.git"
14
13
  },
15
- "homepage": "https://github.com/Markgatcha/universal-mcp-toolkit#readme",
14
+ "homepage": "https://github.com/universal-mcp-toolkit/universal-mcp-toolkit#readme",
16
15
  "exports": {
17
16
  ".": {
18
17
  "types": "./dist/index.d.ts",
@@ -37,12 +36,9 @@
37
36
  ],
38
37
  "dependencies": {
39
38
  "@supabase/supabase-js": "^2.99.0",
40
- "@universal-mcp-toolkit/core": "0.1.0",
39
+ "@universal-mcp-toolkit/core": "0.2.0",
41
40
  "zod": "^4.3.6"
42
41
  },
43
- "publishConfig": {
44
- "access": "public"
45
- },
46
42
  "scripts": {
47
43
  "build": "tsup src/index.ts --format esm --dts --clean",
48
44
  "dev": "tsx watch src/index.ts",