untappd-mcp 1.7.3 → 1.7.4

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 Untappd — beers, breweries, venues, check-ins, wishlists, and your friend feed",
10
- "version": "1.7.3"
10
+ "version": "1.7.4"
11
11
  },
12
12
  "plugins": [
13
13
  {
@@ -15,7 +15,7 @@
15
15
  "displayName": "Untappd",
16
16
  "source": "./",
17
17
  "description": "MCP server for Untappd — search beers/breweries/venues, read profiles/check-ins/wishlists, and post check-ins, toasts, and comments",
18
- "version": "1.7.3",
18
+ "version": "1.7.4",
19
19
  "author": {
20
20
  "name": "Chris Hall"
21
21
  },
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "untappd-mcp",
3
3
  "displayName": "Untappd",
4
- "version": "1.7.3",
4
+ "version": "1.7.4",
5
5
  "description": "MCP server for Untappd — search beers/breweries/venues, read check-ins and wishlists, and post check-ins, toasts, and comments",
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];
@@ -31184,7 +31190,7 @@ function toolAnnotations(opts = {}) {
31184
31190
  }
31185
31191
 
31186
31192
  // src/version.ts
31187
- var VERSION = "1.7.3";
31193
+ var VERSION = "1.7.4";
31188
31194
 
31189
31195
  // src/client.ts
31190
31196
  import { dirname, join } from "path";
package/dist/version.js CHANGED
@@ -3,4 +3,4 @@
3
3
  // json's `extra-files`), and `versionSyncTest` guards that it stays equal to
4
4
  // package.json. Import VERSION wherever the version is needed rather than
5
5
  // re-declaring it.
6
- export const VERSION = '1.7.3'; // x-release-please-version
6
+ export const VERSION = '1.7.4'; // x-release-please-version
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "untappd-mcp",
3
- "version": "1.7.3",
3
+ "version": "1.7.4",
4
4
  "mcpName": "io.github.chrischall/untappd-mcp",
5
5
  "description": "Untappd MCP server for Claude — developed and maintained by AI (Claude Code)",
6
6
  "author": "Claude Code (AI) <https://www.anthropic.com/claude>",
@@ -50,7 +50,7 @@
50
50
  "zod": "^4.4.2"
51
51
  },
52
52
  "devDependencies": {
53
- "@chrischall/mcp-connector": "^0.1.0",
53
+ "@chrischall/mcp-connector": "^1.0.0",
54
54
  "@cloudflare/vitest-pool-workers": "^0.18.4",
55
55
  "@cloudflare/workers-oauth-provider": "^0.8.1",
56
56
  "@cloudflare/workers-types": "^5.20260708.1",
package/server.json CHANGED
@@ -6,12 +6,12 @@
6
6
  "url": "https://github.com/chrischall/untappd-mcp",
7
7
  "source": "github"
8
8
  },
9
- "version": "1.7.3",
9
+ "version": "1.7.4",
10
10
  "packages": [
11
11
  {
12
12
  "registryType": "npm",
13
13
  "identifier": "untappd-mcp",
14
- "version": "1.7.3",
14
+ "version": "1.7.4",
15
15
  "transport": {
16
16
  "type": "stdio"
17
17
  },