Labsco
goodbarber logo

GoodBarber Public MCP

โ˜… 2

from goodbarber

Manage your GoodBarber eCommerce, Community, and Membership app via natural language.

๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅโœ“ VerifiedFreeAdvanced setup

GoodBarber Skills

44 AI-powered skills to manage your GoodBarber app with any MCP-compatible client โ€” eCommerce, Community, Membership, and CMS.

These skills connect to the GoodBarber MCP server and give your AI assistant structured workflows to manage your products, orders, customers, promotions, subscriptions, content, analytics, and more โ€” all from a conversational interface.


What are Skills?

Skills are instruction files (.md) that teach an AI assistant how to perform specific tasks using your GoodBarber app's API via MCP (Model Context Protocol). Instead of manually calling API tools one by one, a skill orchestrates the full workflow โ€” from data retrieval to formatted report โ€” in a single natural-language request.

For example, asking "Show me my best sellers this month" triggers the best-sellers skill, which automatically fetches your orders and catalog, computes rankings, and returns a formatted report.


Skills by App Type

eCommerce (18 skills)

Catalog & Products
SkillDescription
best-sellersRank products by sales volume and revenue over a given period
catalog-auditDetect incomplete product sheets (missing images, descriptions, variants)
low-performersIdentify products with zero or very low sales
orphan-productsFind products not assigned to any collection
product-launchGuided creation of a full product with variants, images, and SEO
stock-checkAudit stock levels โ€” flag out-of-stock and low-stock items
reorder-plannerGenerate a supplier-ready replenishment queue based on sales velocity
Orders & Customers
SkillDescription
order-followupTo-do list of orders to process (pending, to ship, to deliver)
customer-insightsSegment customers into VIP, loyal, dormant, and one-shot profiles
rfm-segmentationRecency / Frequency / Monetary customer segmentation
prospect-nurturePrioritize prospects and suggest conversion actions
Promotions
SkillDescription
promo-campaignCreate a promo code + send an announcement push in one workflow
promo-performance-reviewAnalyze promo impact: before, during, and after the campaign
Analytics & Communication
SkillDescription
traffic-reportApp-level analytics: page views, launches, sessions, platforms
kpi-monitorThreshold-based daily/weekly KPI health alerts
weekly-digestAutomated weekly business recap
push-broadcastCompose, preview, schedule, and send a push notification to all customers
push-targetedCompose, preview, schedule, and send a push to specific customers or prospects

Community (5 skills)

SkillDescription
traffic-reportApp analytics: page views, launches, sessions by platform
push-broadcastSend a push to everyone or to specific community groups
push-targetedSend a push to specific community users
device-landscapePlatform distribution, top devices, OS versions
weekly-digestWeekly community activity recap

Membership (10 skills)

Subscriptions
SkillDescription
subscription-auditActive vs expired, churn rate, at-risk subscribers, winback opportunities
expiration-calendarUpcoming subscription expirations timeline
longest-subscribersIdentify your most loyal long-term subscribers
internal-subscription-grantCreate, update, or revoke internal subscriptions
Users & Analytics
SkillDescription
prospect-followupPrioritize membership prospects for conversion
traffic-reportApp analytics: page views, launches, sessions by platform
push-broadcastSend a push notification to all eligible users
push-targetedSend a push to specific users or subscription-status audiences
device-landscapePlatform distribution, top devices, OS versions
weekly-digestWeekly membership business recap

CMS / Content (11 skills)

Skills for managing editorial content โ€” articles, agenda events, map points of interest, photo galleries, videos, and sounds. Work with any GoodBarber app that has CMS content sections.

Authoring & Publishing
SkillDescription
article-publishGuided creation of a full article: body paragraphs, category, slug, scheduling, paywall
event-publishCreate an agenda event with start/end datetime, location, and body content
place-publishCreate a map point of interest (address + coordinates) with description
gallery-builderBatch-upload images into a photo gallery and set titles/status
article-restructureReorder, clean, and fix the body paragraphs of an existing article
Quality & Governance
SkillDescription
content-auditDetect incomplete content across all types (no cover, empty body, missing dates/coords)
draft-reviewSurface stale drafts and unfinished content with a recommended next step
paywall-auditIAP apps: check premium content has a coherent free preview (accessTier, maxFreeParagraphs)
stale-content-refreshRank aging articles as refresh, re-promote, or retire candidates
Planning & Recap
SkillDescription
editorial-calendarForward view: scheduled publications, upcoming events, expiring content
weekly-digestWhat published this week + what's scheduled next week, by content type

Note: weekly-digest, traffic-report, push-broadcast, and push-targeted names recur across app types. The CMS skills are namespaced by a cms- prefix in their frontmatter (e.g. cms-weekly-digest) to avoid collisions โ€” keep them in a separate folder if you install skills from multiple directories.


Design Principles

All skills follow these rules:

  • Pagination-aware โ€” Large datasets are filtered server-side, not blindly paginated
  • Fuzzy matching โ€” Mention a product or collection by name; the skill resolves it
  • Workflow chaining โ€” Every skill suggests 2โ€“3 related skills to run next
  • No destructive actions without confirmation โ€” Mutations always require explicit user validation
  • Structured output โ€” Every skill returns a formatted report, not a one-liner

Compatibility

These skills work with any MCP-compatible AI client, including:

  • Claude Desktop (Cowork)
  • Claude Code (CLI)
  • Cursor
  • VS Code (Copilot, Claude, Cline, etc.)
  • Windsurf
  • Codex CLI
  • Gemini CLI
  • Any client supporting the Model Context Protocol

Repo Structure

goodbarber-skills/
โ”œโ”€โ”€ README.md
โ””โ”€โ”€ skills/
    โ”œโ”€โ”€ ecommerce/
    โ”‚   โ”œโ”€โ”€ best-sellers/SKILL.md
    โ”‚   โ”œโ”€โ”€ catalog-audit/SKILL.md
    โ”‚   โ”œโ”€โ”€ customer-insights/SKILL.md
    โ”‚   โ”œโ”€โ”€ ...
    โ”‚   โ”œโ”€โ”€ push-targeted/SKILL.md
    โ”‚   โ””โ”€โ”€ weekly-digest/SKILL.md
    โ”œโ”€โ”€ community/
    โ”‚   โ”œโ”€โ”€ device-landscape/SKILL.md
    โ”‚   โ”œโ”€โ”€ push-broadcast/SKILL.md
    โ”‚   โ”œโ”€โ”€ push-targeted/SKILL.md
    โ”‚   โ”œโ”€โ”€ traffic-report/SKILL.md
    โ”‚   โ””โ”€โ”€ weekly-digest/SKILL.md
    โ”œโ”€โ”€ membership/
    โ”‚   โ”œโ”€โ”€ subscription-audit/SKILL.md
    โ”‚   โ”œโ”€โ”€ expiration-calendar/SKILL.md
    โ”‚   โ”œโ”€โ”€ ...
    โ”‚   โ”œโ”€โ”€ push-broadcast/SKILL.md
    โ”‚   โ”œโ”€โ”€ push-targeted/SKILL.md
    โ”‚   โ””โ”€โ”€ weekly-digest/SKILL.md
    โ””โ”€โ”€ cms/
        โ”œโ”€โ”€ article-publish/SKILL.md
        โ”œโ”€โ”€ content-audit/SKILL.md
        โ”œโ”€โ”€ editorial-calendar/SKILL.md
        โ”œโ”€โ”€ ...
        โ””โ”€โ”€ weekly-digest/SKILL.md