Skip to content

v3.0.0

Choose a tag to compare

@evilmachina evilmachina released this 21 Dec 16:51
· 60 commits to main since this release

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 storeId parameter
    • 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)
  • Removed Tools (use base tool with storeId parameter instead):

    • pinmeto_get_google_insights_locationpinmeto_get_google_insights
    • pinmeto_get_google_ratings_locationpinmeto_get_google_ratings
    • pinmeto_get_google_keywords_locationpinmeto_get_google_keywords
    • pinmeto_get_facebook_insights_locationpinmeto_get_facebook_insights
    • pinmeto_get_facebook_ratings_locationpinmeto_get_facebook_ratings
    • pinmeto_get_apple_insights_locationpinmeto_get_apple_insights
  • Removed Prompts: Prompts capability removed entirely

    • pinmeto_analyze_location
    • pinmeto_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" })