@everystack/mcp 0.2.1 → 0.2.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@everystack/mcp",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "MCP server that makes Claude an everystack expert",
5
5
  "license": "AGPL-3.0-only",
6
6
  "publishConfig": {
@@ -105,7 +105,7 @@ export function registerSecurePrompt(server: McpServer): void {
105
105
  'const auth = createAuthHandlers(db, schema, jwtSecret, {',
106
106
  " mode: 'postgres',",
107
107
  ' sql,',
108
- ' cookies: true, // HttpOnly cookies for web',
108
+ ' cookies: { allowedOrigins: ["https://your-web-origin"] }, // HttpOnly cookies for web — Origin allowlist required (fail-closed)',
109
109
  '});',
110
110
  '```',
111
111
  '',