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 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.
@@ -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 || 'http://localhost:5000/api';
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() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "whistler-mcp",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "An MCP Server for retrieving placement data, job roles, and platform statistics from the Whistler API.",
5
5
  "main": "server.js",
6
6
  "bin": {