@ekkos/mcp-server 2.0.1 → 2.0.2

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -22,7 +22,7 @@ import { ListToolsRequestSchema, CallToolRequestSchema, ListResourcesRequestSche
22
22
  // Configuration
23
23
  const EKKOS_API_KEY = process.env.EKKOS_API_KEY || '';
24
24
  const EKKOS_USER_ID = process.env.EKKOS_USER_ID || '';
25
- const EKKOS_MCP_URL = process.env.EKKOS_MCP_URL || 'https://mcp.ekkos.dev/api/v1/mcp';
25
+ const EKKOS_MCP_URL = process.env.EKKOS_MCP_URL || 'https://api.ekkos.dev/api/v1/mcp';
26
26
  const DEBUG = process.env.EKKOS_DEBUG === 'true';
27
27
  if (!EKKOS_API_KEY) {
28
28
  console.error('[ekkOS] ERROR: EKKOS_API_KEY environment variable is required');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ekkos/mcp-server",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "ekkOS Memory MCP Server - stdio bridge to cloud memory substrate",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",