@cliniq360/eigi-mcp 1.0.2 → 1.0.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.
@@ -17,8 +17,8 @@ function getBaseUrl() {
17
17
  if (typeof process !== "undefined" && process.env?.EIGI_API_BASE_URL) {
18
18
  return process.env.EIGI_API_BASE_URL;
19
19
  }
20
- // Default to production URL
21
- return "https://prod.eigi.ai";
20
+ // Default to QA URL
21
+ return "https://prod.qa.eigi.ai";
22
22
  }
23
23
  export const API_CONFIG = {
24
24
  BASE_URL: getBaseUrl(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cliniq360/eigi-mcp",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "type": "module",
5
5
  "description": "MCP server for eigi.ai - Create and manage AI voice agents, conversations, and real-time voice interactions",
6
6
  "mcpName": "io.github.eigi-ai/eigi",
@@ -30,8 +30,7 @@
30
30
  ],
31
31
  "scripts": {
32
32
  "build": "tsc --noEmit && cross-env INPUT=pages/conversations-app.html vite build && cross-env INPUT=pages/conversations-list-app.html vite build && cross-env INPUT=pages/conversation-detail-app.html vite build && cross-env INPUT=pages/agents-app-v2.html vite build && cross-env INPUT=pages/interactive-agent-v2.html vite build",
33
- "build:npm": "tsc -p tsconfig.build.json && npm run build:pages",
34
- "build:pages": "cross-env INPUT=pages/conversations-app.html vite build && cross-env INPUT=pages/conversations-list-app.html vite build && cross-env INPUT=pages/conversation-detail-app.html vite build && cross-env INPUT=pages/agents-app-v2.html vite build && cross-env INPUT=pages/interactive-agent-v2.html vite build",
33
+ "build:npm": "tsc -p tsconfig.build.json",
35
34
  "prepublishOnly": "npm run build:npm",
36
35
  "serve": "tsx main.ts",
37
36
  "serve:stdio": "node dist/main.js --stdio",