@rigstate/mcp 0.5.9 → 0.6.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.
- package/.rigstate +6 -0
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/lib/supabase.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rigstate/mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.1",
|
|
4
4
|
"description": "Rigstate MCP Server - Model Context Protocol for AI Editors",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -44,4 +44,4 @@
|
|
|
44
44
|
],
|
|
45
45
|
"author": "Rigstate",
|
|
46
46
|
"license": "MIT"
|
|
47
|
-
}
|
|
47
|
+
}
|
package/src/lib/supabase.ts
CHANGED
|
@@ -16,8 +16,8 @@ import { createClient as createSupabaseClient, SupabaseClient } from '@supabase/
|
|
|
16
16
|
import { createHash } from 'crypto';
|
|
17
17
|
|
|
18
18
|
// Production Rigstate configuration
|
|
19
|
-
const PRODUCTION_SUPABASE_URL = 'https://
|
|
20
|
-
const PRODUCTION_SUPABASE_ANON_KEY = '
|
|
19
|
+
const PRODUCTION_SUPABASE_URL = 'https://gvmoopyzhsdolibsuvpa.supabase.co';
|
|
20
|
+
const PRODUCTION_SUPABASE_ANON_KEY = 'sb_publishable_-RYJkFocIiMhOZczMC5mvQ_EozANMnt';
|
|
21
21
|
const PRODUCTION_SUPABASE_SERVICE_KEY = process.env.SUPABASE_SERVICE_ROLE_KEY || '';
|
|
22
22
|
|
|
23
23
|
// Environment configuration
|