untappd-mcp 1.6.0 → 1.7.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 +9 -1
- package/SKILL.md +4 -0
- package/dist/bundle.js +1351 -1164
- package/dist/cache/store.js +73 -0
- package/dist/index.js +1 -1
- package/dist/tools/beer.js +27 -1
- package/dist/tools/cache.js +129 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
- 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.7.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.7.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.7.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
|
@@ -84,7 +84,7 @@ Writes (confirm-gated — return a dry-run preview unless called with
|
|
|
84
84
|
|
|
85
85
|
Check-in cache: `untappd_sync_checkins`, `untappd_sync_user_beers`,
|
|
86
86
|
`untappd_cache_has_had`, `untappd_cache_has_had_many`, `untappd_cache_not_had`,
|
|
87
|
-
`untappd_cache_query`.
|
|
87
|
+
`untappd_cache_query`, `untappd_top_not_had`.
|
|
88
88
|
|
|
89
89
|
## Check-in cache
|
|
90
90
|
|
|
@@ -125,6 +125,14 @@ sources (a hit in either counts as had):
|
|
|
125
125
|
(e.g. a venue's menu) → had/not-had per beer.
|
|
126
126
|
- `untappd_cache_not_had` — given a list of `bids`, return just the ones the user
|
|
127
127
|
has **not** had — the "what's new to me on this menu?" filter.
|
|
128
|
+
- `untappd_top_not_had` — from a list of `bids`, return the **top N not-had
|
|
129
|
+
beers ranked by Untappd global rating**, with an optional `style` filter (the
|
|
130
|
+
"what should I order off this tap list?" tool). Not-had filtering is
|
|
131
|
+
cache-only; beer ratings come from a metadata cache (`beer_meta`) that's seeded
|
|
132
|
+
opportunistically by `untappd_beer_info` / `untappd_search_beer` and topped up
|
|
133
|
+
via `beer/info` only on a cache miss or entries older than 30 days — capped at
|
|
134
|
+
`api_budget` calls/run (default 25), returning `partial: true` /
|
|
135
|
+
`another_run_needed: true` when more are needed.
|
|
128
136
|
- `untappd_cache_query` — filter cached **check-ins** by brewery, style,
|
|
129
137
|
`min_rating`, venue, and/or date range, with sorting and a limit.
|
|
130
138
|
|
package/SKILL.md
CHANGED
|
@@ -72,6 +72,10 @@ Query tools (has-had ones consult BOTH sources — a hit in either = had):
|
|
|
72
72
|
case-insensitive `beer_name` substring.
|
|
73
73
|
- `untappd_cache_has_had_many` — batch had/not-had for a list of `bids`.
|
|
74
74
|
- `untappd_cache_not_had` — from a list of `bids`, the ones NOT had.
|
|
75
|
+
- `untappd_top_not_had` — from a list of `bids`, the top N NOT-had beers by
|
|
76
|
+
Untappd rating, with an optional `style` filter ("what should I order off this
|
|
77
|
+
tap list?"). Uses a `beer_meta` cache; calls `beer/info` only on miss/stale,
|
|
78
|
+
capped at `api_budget` per run (partial/another_run_needed when exceeded).
|
|
75
79
|
- `untappd_cache_query` — filter cached check-ins by brewery, style, `min_rating`,
|
|
76
80
|
venue, and date range.
|
|
77
81
|
|