Browse Source

feat: add Supabase MCP configuration #9

- Created .claude/mcp.json with Supabase HTTP MCP server
- Integrated with existing Gogs MCP configuration
- Uses credentials from .secrets file (SUPABASE_PROJECT_REF and SUPABASE_ACCESS_TOKEN)
- Enables Supabase database operations through MCP interface

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
Claude 5 months ago
parent
commit
9d0f599661
1 changed files with 19 additions and 0 deletions
  1. 19 0
      .claude/mcp.json

+ 19 - 0
.claude/mcp.json

@@ -0,0 +1,19 @@
+{
+  "mcpServers": {
+    "gogs": {
+      "type": "stdio",
+      "command": "node",
+      "args": [
+        "/home/claude/gogs-mcp/dist/index.js"
+      ],
+      "env": {}
+    },
+    "supabase": {
+      "type": "http",
+      "url": "https://mcp.supabase.com/mcp?project_ref=ztklqodcdjeqpsvhlpud",
+      "headers": {
+        "Authorization": "Bearer sbp_893d89bb424a8095d8c504b49615189fee5c503a"
+      }
+    }
+  }
+}