@sealab/mcp-server 1.0.0 → 1.0.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.
@@ -7,7 +7,7 @@ exports.McpApiError = exports.client = void 0;
7
7
  exports.handleAxiosError = handleAxiosError;
8
8
  const axios_1 = __importDefault(require("axios"));
9
9
  const API_KEY = process.env.SEALAB_API_KEY;
10
- const API_URL = process.env.SEALAB_API_URL ?? 'https://thesealab.com';
10
+ const API_URL = process.env.SEALAB_API_URL ?? 'https://api.thesealab.com';
11
11
  if (!API_KEY) {
12
12
  throw new Error('SEALAB_API_KEY environment variable is required');
13
13
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sealab/mcp-server",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "MCP server for the Sealab cabinetry catalog",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -1,7 +1,7 @@
1
1
  import axios, { AxiosInstance, AxiosError } from 'axios';
2
2
 
3
3
  const API_KEY = process.env.SEALAB_API_KEY;
4
- const API_URL = process.env.SEALAB_API_URL ?? 'https://thesealab.com';
4
+ const API_URL = process.env.SEALAB_API_URL ?? 'https://api.thesealab.com';
5
5
 
6
6
  if (!API_KEY) {
7
7
  throw new Error('SEALAB_API_KEY environment variable is required');