jobseek-mcp 0.5.0 → 0.5.1

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.
@@ -63,8 +63,8 @@ export async function handleLaunchPad(args, apiUrl, apiKey) {
63
63
  const opened = [];
64
64
  for (const link of links) {
65
65
  try {
66
- // Works on macOS. For cross-platform: use 'start' on Windows, 'xdg-open' on Linux
67
- await execAsync(`open "${link.url}"`);
66
+ // Open in Chrome on macOS
67
+ await execAsync(`open -a "Google Chrome" "${link.url}"`);
68
68
  opened.push(link.name);
69
69
  }
70
70
  catch (err) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jobseek-mcp",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "JobSeek MCP Server - AI-powered job search automation for Claude Code",
5
5
  "author": "Shawn Mitchell",
6
6
  "license": "MIT",
@@ -44,4 +44,4 @@
44
44
  "engines": {
45
45
  "node": ">=18"
46
46
  }
47
- }
47
+ }