untappd-mcp 0.0.0 → 1.1.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 +9 -3
- package/.claude-plugin/plugin.json +8 -2
- package/README.md +9 -5
- package/dist/bundle.js +593 -38
- package/dist/client.js +12 -0
- package/dist/compact.js +90 -0
- package/dist/index.js +8 -0
- package/dist/tools/beer.js +26 -2
- package/dist/tools/brewery.js +18 -0
- package/dist/tools/checkin.js +107 -7
- package/dist/tools/discover.js +48 -0
- package/dist/tools/feed.js +7 -2
- package/dist/tools/friends.js +72 -0
- package/dist/tools/resolve.js +92 -0
- package/dist/tools/user.js +50 -6
- package/dist/tools/venue.js +31 -0
- package/dist/tools/wishlist.js +48 -0
- package/dist/version.js +1 -1
- package/package.json +3 -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": "
|
|
10
|
+
"version": "1.1.0"
|
|
11
11
|
},
|
|
12
12
|
"plugins": [
|
|
13
13
|
{
|
|
@@ -15,14 +15,20 @@
|
|
|
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": "
|
|
18
|
+
"version": "1.1.0",
|
|
19
19
|
"author": {
|
|
20
20
|
"name": "Chris Hall"
|
|
21
21
|
},
|
|
22
22
|
"homepage": "https://github.com/chrischall/untappd-mcp",
|
|
23
23
|
"repository": "https://github.com/chrischall/untappd-mcp",
|
|
24
24
|
"license": "MIT",
|
|
25
|
-
"keywords": [
|
|
25
|
+
"keywords": [
|
|
26
|
+
"untappd",
|
|
27
|
+
"beer",
|
|
28
|
+
"breweries",
|
|
29
|
+
"checkins",
|
|
30
|
+
"mcp"
|
|
31
|
+
],
|
|
26
32
|
"category": "lifestyle"
|
|
27
33
|
}
|
|
28
34
|
]
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "untappd-mcp",
|
|
3
3
|
"displayName": "Untappd",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "1.1.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",
|
|
@@ -10,7 +10,13 @@
|
|
|
10
10
|
"homepage": "https://github.com/chrischall/untappd-mcp",
|
|
11
11
|
"repository": "https://github.com/chrischall/untappd-mcp",
|
|
12
12
|
"license": "MIT",
|
|
13
|
-
"keywords": [
|
|
13
|
+
"keywords": [
|
|
14
|
+
"untappd",
|
|
15
|
+
"beer",
|
|
16
|
+
"breweries",
|
|
17
|
+
"checkins",
|
|
18
|
+
"mcp"
|
|
19
|
+
],
|
|
14
20
|
"skills": "./SKILL.md",
|
|
15
21
|
"mcp": "./.mcp.json"
|
|
16
22
|
}
|
package/README.md
CHANGED
|
@@ -53,14 +53,18 @@ Keep these values private; do not commit them.
|
|
|
53
53
|
|
|
54
54
|
## Tools
|
|
55
55
|
|
|
56
|
-
Reads: `untappd_search_beer`, `untappd_beer_info`, `
|
|
57
|
-
`
|
|
56
|
+
Reads: `untappd_search_beer`, `untappd_beer_info`, `untappd_beer_activity`,
|
|
57
|
+
`untappd_search_brewery`, `untappd_brewery_info`, `untappd_brewery_beers`,
|
|
58
|
+
`untappd_search_venue`, `untappd_venue_info`, `untappd_venue_activity`,
|
|
58
59
|
`untappd_user_info`, `untappd_user_checkins`, `untappd_user_wishlist`,
|
|
59
|
-
`untappd_user_beers`, `untappd_user_badges`, `untappd_user_friends`,
|
|
60
|
-
`untappd_activity_feed`, `untappd_checkin_info`, `
|
|
60
|
+
`untappd_user_beers`, `untappd_user_badges`, `untappd_user_friends`, `untappd_pending_friends`,
|
|
61
|
+
`untappd_activity_feed`, `untappd_checkin_info`, `untappd_resolve`, `untappd_open_url`, `untappd_user_venues`, `untappd_venue_by_foursquare`, `untappd_trending`,
|
|
62
|
+
`untappd_notifications`, `untappd_local_checkins`, `untappd_healthcheck`.
|
|
61
63
|
|
|
62
64
|
Writes (confirm-gated — return a dry-run preview unless called with
|
|
63
|
-
`confirm: true`): `untappd_toast`, `untappd_add_comment`, `untappd_checkin
|
|
65
|
+
`confirm: true`): `untappd_toast`, `untappd_add_comment`, `untappd_delete_comment`, `untappd_checkin`,
|
|
66
|
+
`untappd_wishlist_add`, `untappd_wishlist_remove`, `untappd_delete_checkin`,
|
|
67
|
+
`untappd_add_friend`, `untappd_accept_friend`, `untappd_reject_friend`, `untappd_remove_friend`.
|
|
64
68
|
|
|
65
69
|
## Development
|
|
66
70
|
|