@intangle/mcp-server 2.5.2 → 2.5.3

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
@@ -97,7 +97,6 @@ try {
97
97
  function buildApiUrl(endpoint) {
98
98
  const url = new URL(`/api/mcp/${endpoint}`, API_BASE_URL);
99
99
  if (VERCEL_BYPASS_TOKEN) {
100
- url.searchParams.set("x-vercel-set-bypass-cookie", "true");
101
100
  url.searchParams.set("x-vercel-protection-bypass", VERCEL_BYPASS_TOKEN);
102
101
  }
103
102
  return url.toString();
package/index.ts CHANGED
@@ -128,7 +128,6 @@ try {
128
128
  const url = new URL(`/api/mcp/${endpoint}`, API_BASE_URL)
129
129
 
130
130
  if (VERCEL_BYPASS_TOKEN) {
131
- url.searchParams.set("x-vercel-set-bypass-cookie", "true")
132
131
  url.searchParams.set("x-vercel-protection-bypass", VERCEL_BYPASS_TOKEN)
133
132
  }
134
133
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intangle/mcp-server",
3
- "version": "2.5.2",
3
+ "version": "2.5.3",
4
4
  "description": "Model Context Protocol server for Intangle - AI context that persists across conversations",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",