@rigstate/mcp 0.6.5 → 0.6.6

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/dist/index.js CHANGED
@@ -4207,6 +4207,9 @@ async function main() {
4207
4207
  }
4208
4208
  const { supabase, userId } = authResult.context;
4209
4209
  startFrankWatcher(supabase, userId);
4210
+ const apiUrl = process.env.RIGSTATE_APP_URL || "https://app.rigstate.com";
4211
+ console.error(`Status: Connected to Rigstate Cloud (${apiUrl})`);
4212
+ console.error(`Project Context: Secured via RPC`);
4210
4213
  const server = createMcpServer();
4211
4214
  setupToolHandlers(server, { supabase, userId });
4212
4215
  const transport = new StdioServerTransport();