@cci-labs/mode-mcp 1.0.1 → 1.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/config.js +1 -1
  2. package/package.json +1 -1
package/dist/config.js CHANGED
@@ -3,7 +3,7 @@ import path from "path";
3
3
  import { fileURLToPath } from "url";
4
4
  // Load .env from project root
5
5
  const __dirname = path.dirname(fileURLToPath(import.meta.url));
6
- dotenv.config({ path: path.resolve(__dirname, "..", ".env") });
6
+ dotenv.config({ path: path.resolve(__dirname, "..", ".env"), quiet: true });
7
7
  export function loadConfig() {
8
8
  const workspace = process.env.MODE_WORKSPACE;
9
9
  const apiToken = process.env.MODE_API_TOKEN;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cci-labs/mode-mcp",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "MCP server for Mode Analytics — read-only report access and execution",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",