v3.0.0
3.0.0 (2025-12-21)
⚠ BREAKING CHANGES
-
Tool Consolidation: Merged 7 single-location tools into their bulk counterparts (17 → 10 tools)
- Network tools now accept optional
storeIdparameter - Without
storeId: fetch data for all locations - With
storeId: fetch data for single location - ~44% reduction in context tokens (~5,500 tokens saved per request)
- Network tools now accept optional
-
Removed Tools (use base tool with
storeIdparameter instead):pinmeto_get_google_insights_location→pinmeto_get_google_insightspinmeto_get_google_ratings_location→pinmeto_get_google_ratingspinmeto_get_google_keywords_location→pinmeto_get_google_keywordspinmeto_get_facebook_insights_location→pinmeto_get_facebook_insightspinmeto_get_facebook_ratings_location→pinmeto_get_facebook_ratingspinmeto_get_apple_insights_location→pinmeto_get_apple_insights
-
Removed Prompts: Prompts capability removed entirely
pinmeto_analyze_locationpinmeto_summarize_insights
Features
- Consolidate tools to reduce context consumption (#26)
Migration
Before:
// Single location
pinmeto_get_google_insights_location({ storeId: "1337", from: "2024-01-01", to: "2024-12-31" })
// All locations
pinmeto_get_google_insights({ from: "2024-01-01", to: "2024-12-31" })After:
// Single location (storeId provided)
pinmeto_get_google_insights({ storeId: "1337", from: "2024-01-01", to: "2024-12-31" })
// All locations (storeId omitted)
pinmeto_get_google_insights({ from: "2024-01-01", to: "2024-12-31" })