@zincapp/mcp-server 1.3.0 → 1.3.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/dist/config.js +3 -1
- package/package.json +1 -1
package/dist/config.js
CHANGED
|
@@ -39,7 +39,9 @@ export function loadConfig() {
|
|
|
39
39
|
}
|
|
40
40
|
return {
|
|
41
41
|
agentToken,
|
|
42
|
-
|
|
42
|
+
// api.zincapp.com serves the API at the root (agent/v1/…), NOT under /api — that prefix
|
|
43
|
+
// belongs to the my.zincapp.com portal gateway. Override with ZINCAPP_API_URL if needed.
|
|
44
|
+
apiBaseUrl: apiBaseUrl || 'https://api.zincapp.com',
|
|
43
45
|
locale: locale || 'en',
|
|
44
46
|
};
|
|
45
47
|
}
|
package/package.json
CHANGED