whistler-mcp 1.0.1 → 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.
- package/README.md +1 -1
- package/adapters/apiClient.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -46,5 +46,5 @@ This folder is a completely standalone Node.js package. It has its own internal
|
|
|
46
46
|
|
|
47
47
|
## Local Development
|
|
48
48
|
1. Clone the repository.
|
|
49
|
-
2. Run `npm install` inside the `/mcp` folder.
|
|
49
|
+
2. Run `npm install` inside the `/whistler-mcp` folder.
|
|
50
50
|
3. Test locally using the `node server.js` command.
|
package/adapters/apiClient.js
CHANGED
|
@@ -3,7 +3,7 @@ import fs from 'fs';
|
|
|
3
3
|
import path from 'path';
|
|
4
4
|
import os from 'os';
|
|
5
5
|
|
|
6
|
-
const API_BASE_URL = process.env.API_URL || '
|
|
6
|
+
const API_BASE_URL = process.env.API_URL || 'https://whistler-backend.onrender.com/api';
|
|
7
7
|
export const TOKEN_PATH = path.join(os.homedir(), '.whistler_mcp_token.json');
|
|
8
8
|
|
|
9
9
|
export function getSavedToken() {
|