vibo-mcp 1.4.0 → 1.4.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.
@@ -7,7 +7,7 @@
7
7
  },
8
8
  "metadata": {
9
9
  "description": "MCP server for Vibo (vibodj.com) — plan & manage event music, song requests, ideas, guests, and playlists via natural language",
10
- "version": "1.4.0"
10
+ "version": "1.4.2"
11
11
  },
12
12
  "plugins": [
13
13
  {
@@ -15,7 +15,7 @@
15
15
  "displayName": "Vibo",
16
16
  "source": "./",
17
17
  "description": "MCP server for Vibo — browse & manage events, timeline, songs, the DJ song ideas/questions, guests, and exports to Spotify/Apple Music",
18
- "version": "1.4.0",
18
+ "version": "1.4.2",
19
19
  "author": {
20
20
  "name": "Chris Hall"
21
21
  },
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "vibo-mcp",
3
3
  "displayName": "Vibo",
4
- "version": "1.4.0",
4
+ "version": "1.4.2",
5
5
  "description": "MCP server for Vibo (vibodj.com) — plan & manage event music, song requests, ideas, guests, and playlists via natural language",
6
6
  "author": {
7
7
  "name": "Chris Hall",
package/dist/bundle.js CHANGED
@@ -3769,6 +3769,7 @@ var require_fast_uri = __commonJS({
3769
3769
  return uriTokens.join("");
3770
3770
  }
3771
3771
  var URI_PARSE = /^(?:([^#/:?]+):)?(?:\/\/((?:([^#/?@]*)@)?(\[[^#/?\]]+\]|[^#/:?]*)(?::(\d*))?))?([^#?]*)(?:\?([^#]*))?(?:#((?:.|[\n\r])*))?/u;
3772
+ var AUTHORITY_PREFIX = /^(?:[^#/:?]+:)?\/\/([^/?#]*)/;
3772
3773
  function getParseError(parsed, matches) {
3773
3774
  if (matches[2] !== void 0 && parsed.path && parsed.path[0] !== "/") {
3774
3775
  return 'URI path must start with "/" when authority is present.';
@@ -3798,6 +3799,11 @@ var require_fast_uri = __commonJS({
3798
3799
  uri = "//" + uri;
3799
3800
  }
3800
3801
  }
3802
+ const authorityMatch = uri.match(AUTHORITY_PREFIX);
3803
+ if (authorityMatch !== null && authorityMatch[1].indexOf("\\") !== -1) {
3804
+ parsed.error = "URI authority must not contain a literal backslash.";
3805
+ malformedAuthorityOrPort = true;
3806
+ }
3801
3807
  const matches = uri.match(URI_PARSE);
3802
3808
  if (matches) {
3803
3809
  parsed.scheme = matches[1];
@@ -3841,7 +3847,7 @@ var require_fast_uri = __commonJS({
3841
3847
  if (!options.unicodeSupport && (!schemeHandler || !schemeHandler.unicodeSupport)) {
3842
3848
  if (parsed.host && (options.domainHost || schemeHandler && schemeHandler.domainHost) && isIP === false && nonSimpleDomain(parsed.host)) {
3843
3849
  try {
3844
- parsed.host = URL.domainToASCII(parsed.host.toLowerCase());
3850
+ parsed.host = new URL("http://" + parsed.host).hostname;
3845
3851
  } catch (e) {
3846
3852
  parsed.error = parsed.error || "Host's domain name can not be converted to ASCII: " + e;
3847
3853
  }
@@ -31120,7 +31126,7 @@ function toolAnnotations(opts = {}) {
31120
31126
  }
31121
31127
 
31122
31128
  // src/version.ts
31123
- var VERSION = "1.4.0";
31129
+ var VERSION = "1.4.2";
31124
31130
 
31125
31131
  // src/client.ts
31126
31132
  import { dirname as dirname2, join as join2 } from "path";
package/dist/version.js CHANGED
@@ -2,4 +2,4 @@
2
2
  // literal on the line carrying the release marker; every manifest and the MCP
3
3
  // server banner import VERSION from here, so there is exactly one place to keep
4
4
  // in sync (and one release-please extra-files entry).
5
- export const VERSION = '1.4.0'; // x-release-please-version
5
+ export const VERSION = '1.4.2'; // x-release-please-version
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibo-mcp",
3
- "version": "1.4.0",
3
+ "version": "1.4.2",
4
4
  "mcpName": "io.github.chrischall/vibo-mcp",
5
5
  "description": "Vibo (vibodj.com) MCP server for Claude — host/couple event music planning & management. Developed and maintained by AI (Claude Code).",
6
6
  "author": "Claude Code (AI) <https://www.anthropic.com/claude>",
@@ -54,9 +54,9 @@
54
54
  "zod": "^4.4.2"
55
55
  },
56
56
  "devDependencies": {
57
- "@chrischall/mcp-connector": "^0.1.0",
57
+ "@chrischall/mcp-connector": "^1.0.0",
58
58
  "@cloudflare/vitest-pool-workers": "^0.18.4",
59
- "@cloudflare/workers-oauth-provider": "^0.0.11",
59
+ "@cloudflare/workers-oauth-provider": "^0.8.1",
60
60
  "@cloudflare/workers-types": "^5.20260708.1",
61
61
  "@types/node": "^26.0.0",
62
62
  "@vitest/coverage-v8": "^4.1.2",
package/server.json CHANGED
@@ -6,12 +6,12 @@
6
6
  "url": "https://github.com/chrischall/vibo-mcp",
7
7
  "source": "github"
8
8
  },
9
- "version": "1.4.0",
9
+ "version": "1.4.2",
10
10
  "packages": [
11
11
  {
12
12
  "registryType": "npm",
13
13
  "identifier": "vibo-mcp",
14
- "version": "1.4.0",
14
+ "version": "1.4.2",
15
15
  "transport": {
16
16
  "type": "stdio"
17
17
  },