@barivia/barmesh-mcp 0.1.0 → 0.1.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/shared.js +2 -2
- package/package.json +1 -1
package/dist/shared.js
CHANGED
|
@@ -16,7 +16,7 @@ export const FETCH_TIMEOUT_MS = parseInt(process.env.BARIVIA_FETCH_TIMEOUT_MS ??
|
|
|
16
16
|
export const MAX_RETRIES = 2;
|
|
17
17
|
export const RETRYABLE_STATUS = new Set([502, 503, 504]);
|
|
18
18
|
/** Single source of truth for the proxy version. Keep in sync with package.json on bump. */
|
|
19
|
-
export const CLIENT_VERSION = "0.1.
|
|
19
|
+
export const CLIENT_VERSION = "0.1.1";
|
|
20
20
|
export const PUBLIC_SITE_ORIGIN = "https://barivia.se";
|
|
21
21
|
/** Large per-cell CSV uploads may exceed the default fetch timeout. */
|
|
22
22
|
export const UPLOAD_DATASET_TIMEOUT_MS = 180_000;
|
|
@@ -130,7 +130,7 @@ export function formatApiErrorMessage(status, bodyText, requestId) {
|
|
|
130
130
|
: status === 401
|
|
131
131
|
? ` Check BARIVIA_API_KEY in your MCP config.${accountHint}`
|
|
132
132
|
: status === 403
|
|
133
|
-
? ` Access denied
|
|
133
|
+
? ` Access denied — your plan does not include the CFD capability. Add the CFD capability at ${PUBLIC_SITE_ORIGIN}/dashboard to enable the barmesh tools.`
|
|
134
134
|
: status === 404
|
|
135
135
|
? " The resource may not exist or may have been deleted."
|
|
136
136
|
: status === 409
|