untappd-mcp 1.1.0 → 1.2.0
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/.claude-plugin/marketplace.json +2 -2
- package/.claude-plugin/plugin.json +1 -1
- package/README.md +15 -0
- package/dist/bundle.js +216 -192
- package/dist/client.js +126 -96
- package/dist/index.js +17 -17
- package/dist/tools/beer.js +1 -2
- package/dist/tools/brewery.js +1 -2
- package/dist/tools/checkin.js +1 -2
- package/dist/tools/discover.js +1 -2
- package/dist/tools/feed.js +1 -2
- package/dist/tools/friends.js +1 -2
- package/dist/tools/resolve.js +1 -2
- package/dist/tools/user.js +10 -11
- package/dist/tools/utilities.js +1 -2
- package/dist/tools/venue.js +1 -2
- package/dist/tools/wishlist.js +1 -2
- package/dist/version.js +1 -1
- package/package.json +11 -3
- package/server.json +2 -2
|
@@ -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.
|
|
10
|
+
"version": "1.2.0"
|
|
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.
|
|
18
|
+
"version": "1.2.0",
|
|
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.
|
|
4
|
+
"version": "1.2.0",
|
|
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/README.md
CHANGED
|
@@ -51,6 +51,21 @@ your own app's traffic with an HTTPS proxy:
|
|
|
51
51
|
|
|
52
52
|
Keep these values private; do not commit them.
|
|
53
53
|
|
|
54
|
+
## Remote connector
|
|
55
|
+
|
|
56
|
+
This server can also run as a hosted Cloudflare Worker — an unlisted, shareable
|
|
57
|
+
"remote connector" you add to claude.ai (Settings → Connectors) instead of
|
|
58
|
+
running it locally. It works on Claude web, desktop, and mobile alike, since
|
|
59
|
+
connectors added on any of those sync to the rest. Each person you share it
|
|
60
|
+
with logs in with their *own* Untappd username and password; the operator only
|
|
61
|
+
ever supplies the shared Untappd app credentials, never anyone's personal
|
|
62
|
+
login. The `.mcpb` / stdio install above remains the desktop-only alternative
|
|
63
|
+
if you'd rather run it locally against just your own account.
|
|
64
|
+
|
|
65
|
+
Setting this up requires a Cloudflare account and is a manual, one-time
|
|
66
|
+
process for whoever hosts it — see
|
|
67
|
+
[`docs/DEPLOY-CONNECTOR.md`](docs/DEPLOY-CONNECTOR.md) for the full runbook.
|
|
68
|
+
|
|
54
69
|
## Tools
|
|
55
70
|
|
|
56
71
|
Reads: `untappd_search_beer`, `untappd_beer_info`, `untappd_beer_activity`,
|