Claude Code plugin and 44 AI skills for the GoodBarber no-code app builder: manage your mobile app (shop, content, community, membership) through the GoodBarber MCP server from any MCP client.
- ✓Open-source license (Unlicense)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Topics declared
- ✓Documented (README)
git clone https://github.com/goodbarber/goodbarber-skills{
"mcpServers": {
"goodbarber-skills": {
"command": "node",
"args": ["/path/to/goodbarber-skills/dist/index.js"]
}
}
}MCP Servers overview
# 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 `shop-best-sellers` skill, which automatically fetches your orders and catalog, computes rankings, and returns a formatted report.
---
## Quick Start
### Option A — Install as a Claude Code plugin
The repo is a Claude Code plugin: it ships the GoodBarber MCP server (`.mcp.json`) and the 44 skills in one package.
```bash
git clone https://github.com/goodbarber/goodbarber-skills.git
claude --plugin-dir ./goodbarber-skills
```
Once the plugin is listed in the community marketplace, install it from any session instead:
```
/plugin marketplace add anthropics/claude-plugins-community
/plugin install goodbarber@claude-community
```
On the first GoodBarber tool call, Claude Code opens the authorization page: paste your **Public API key** and validate. Details in [SETUP.md](SETUP.md).
### Option B — Manual setup (any MCP client)
#### 1. Connect the GoodBarber MCP
You need to add the GoodBarber MCP server as a **custom connector** in your client. The MCP server uses Server-Sent Events (SSE).
**MCP Server URLs:**
| Setup | URL |
|-------|-----|
| Single app | `https://mcp.goodbarber.dev/mcp/sse` |
| Multiple apps | `https://mcp.goodbarber.dev/<app_id>/mcp/sse` |
Replace `<app_id>` with your GoodBarber app ID if you manage multiple apps.
> **Authentication:** the GoodBarber MCP server uses a browser-based OAuth flow.
>
> When your MCP client connects to the SSE endpoint, it may open an authorization page on `mcp.goodbarber.dev`. On that page, you will be asked to paste your **GoodBarber Public API key** and validate the authorization. Generate your Public API key from your app's GoodBarber backoffice, on the **Public API / MCP server** page.
>
> **Important:**
> - Do **not** open the `/authorize` URL manually in your browser.
> - Start from the MCP client by connecting to the SSE endpoint.
> - The client generates the full authorization request parameters automatically (`redirect_uri`, `client_id`, `state`, `code_challenge`, etc.).
>
> If you open the authorization page manually without those parameters, the authentication will fail.
**Claude Desktop (Cowork):**
1. Open **Settings > Connectors**
2. Click **Add custom connector**
3. Enter the MCP server URL above
4. The connector opens the GoodBarber authorization page — paste your **Public API key** there and validate
**Claude Code (CLI):**
```bash
# Single app
claude mcp add goodbarber --transport sse https://mcp.goodbarber.dev/mcp/sse
# Multiple apps
claude mcp add goodbarber --transport sse https://mcp.goodbarber.dev/<app_id>/mcp/sse
```
Then start a Claude Code session — on the first GoodBarber tool call, the CLI will open the GoodBarber authorization page in your browser. Paste your **Public API key** there and validate to complete the OAuth flow.
**Cursor / VS Code / Windsurf:**
Add to your MCP configuration file (`.cursor/mcp.json`, `.vscode/mcp.json`, etc.):
```json
{
"mcpServers": {
"goodbarber": {
"url": "https://mcp.goodbarber.dev/mcp/sse"
}
}
}
```
The first connection from your client triggers the OAuth flow in your browser — paste your **Public API key** on the GoodBarber authorization page and validate.
**Any other MCP-compatible client:**
Point your client to the SSE endpoint above. The GoodBarber MCP server follows the standard MCP protocol and works with any compliant client.
#### 2. Install the skills
Clone this repo and copy only the skills for your app type:
```bash
git clone https://github.com/goodbarber/goodbarber-skills.git
```
> **Note:** the examples below use Claude's local skills directory (`~/.claude/skills/`). If you use another client, copy the skill folders to the directory expected by that client.
**eCommerce app:**
```bash
cp -r goodbarber-skills/skills/ecommerce/* ~/.claude/skills/
```
**Community app:**
```bash
cp -r goodbarber-skills/skills/community/* ~/.claude/skills/
```
**Membership app:**
```bash
cp -r goodbarber-skills/skills/membership/* ~/.claude/skills/
```
**CMS / Content (any app with content sections):**
```bash
cp -r goodbarber-skills/skills/cms/* ~/.claude/skills/
```
> **Tip:** CMS skills are cross-cutting — install them alongside any app type that has content sections (articles, agenda, maps, galleries, videos, sounds).
>
> **Tip:** If your GoodBarber app combines multiple types (e.g. eCommerce + Membership), install skills from both directories.
>
> **Note:** skill directory names carry their family prefix (`shop-`, `community-`, `membership-`, `cms-`) and are unique, so skills from several families can live in the same destination without collisions.
#### 3. Verify
Ask your AI assistant: *"What skills do you have?"* — it should list the installed GoodBarber skills.
---
## Skills by App Type
### eCommerce (18 skills)
<details>
<summary><strong>Catalog & Products</strong></summary>
| Skill | Description |
|-------|-------------|
| `shop-best-sellers` | Rank products by sales volume and revenue over a given period |
| `shop-catalog-audit` | Detect incomplete product sheets (missing images, descriptions, variants) |
| `shop-low-performers` | Identify products with zero or very low sales |
| `shop-orphan-products` | Find products not assigned to any collection |
| `shop-product-launch` | Guided creation of a full product with variants, images, and SEO |
| `shop-stock-check` | Audit stock levels — flag out-of-stock and low-stock items |
| `shop-reorder-planner` | Generate a supplier-ready replenishment queue based on sales velocity |
</details>
<details>
<summary><strong>Orders & Customers</strong></summary>
| Skill | Description |
|-------|-------------|
| `shop-order-followup` | To-do list of orders to process (pending, to ship, to deliver) |
| `shop-customer-insights` | Segment customers into VIP, loyal, dormant, and one-shot profiles |
| `shop-rfm-segmentation` | Recency / Frequency / Monetary customer segmentation |
| `shop-prospect-nurture` | Prioritize prospects and suggest conversion actions |
</details>
<details>
<summary><strong>Promotions</strong></summary>
| Skill | Description |
|-------|-------------|
| `shop-promo-campaign` | Create a promo code + send an announcement push in one workflow |
| `shop-promo-performance-review` | Analyze promo impact: before, during, and after the campaign |
</details>
<details>
<summary><strong>Analytics & Communication</strong></summary>
| Skill | Description |
|-------|-------------|
| `shop-traffic-report` | App-level analytics: page views, launches, sessions, platforms |
| `shop-kpi-monitor` | Threshold-based daily/weekly KPI health alerts |
| `shop-weekly-digest` | Automated weekly business recap |
| `shop-push-broadcast` | Compose, preview, schedule, and send a push notification to all customers |
| `shop-push-targeted` | Compose, preview, schedule, and send a push to specific customers or prospects |
</details>
---
### Community (5 skills)
| Skill | Description |
|-------|-------------|
| `community-traffic-report` | App analytics: page views, launches, sessions by platform |
| `community-push-broadcast` | Send a push to everyone or to specific community groups |
| `community-push-targeted` | Send a push to specific community users |
| `community-device-landscape` | Platform distribution, top devices, OS versions |
| `community-weekly-digest` | Weekly community activity recap |
---
### Membership (10 skills)
<details>
<summary><strong>Subscriptions</strong></summary>
| Skill | Description |
|-------|-------------|
| `membership-subscription-audit` | Active vs expired, churn rate, at-risk subscribers, winback opportunities |
| `membership-expiration-calendar` | Upcoming subscription expirations timeline |
| `membership-longest-subscribers` | Identify your most loyal long-term subscribers |
| `membership-internal-subscription-grant` | Create, update, or revoke internal subscriptions |
</details>
<details>
<summary><strong>Users & Analytics</strong></summary>
| Skill | Description |
|-------|-------------|
| `membership-prospect-followup` | Prioritize membership prospects for conversion |
| `membership-traffic-report` | App analytics: page views, launches, sessions by platform |
| `membership-push-broadcast` | Send a push notification to all eligible users |
| `membership-push-targeted` | Send a push to specific users or subscription-status audiences |
| `membership-device-landscape` | Platform distribution, top devices, OS versions |
| `membership-weekly-digest` | Weekly membership business recap |
</details>
---
### 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.
<details>
<summary><strong>Authoring & Publishing</strong></summary>
| Skill | Description |
|-------|-------------|
| `cms-article-publish` | Guided creation of a full article: body paragraphs, category, slug, scheduling, paywall |
| `cms-event-publish` | Create an agenda event with start/end datetime, location, and body content |
| `cms-place-publish` | Create a map point of interest (address + coordinates) with description |
| `cms-gallery-builder` | BaWhat people ask about goodbarber-skills
What is goodbarber/goodbarber-skills?
+
goodbarber/goodbarber-skills is mcp servers for the Claude AI ecosystem. Claude Code plugin and 44 AI skills for the GoodBarber no-code app builder: manage your mobile app (shop, content, community, membership) through the GoodBarber MCP server from any MCP client. It has 2 GitHub stars and its last recorded update is dated 2026-09-07.
How do I install goodbarber-skills?
+
You can install goodbarber-skills by cloning the repository (https://github.com/goodbarber/goodbarber-skills) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is goodbarber/goodbarber-skills safe to use?
+
Our security agent has analyzed goodbarber/goodbarber-skills and assigned a Trust Score of 95/100 (tier: Verified). See the full breakdown of passed checks and flags on this page.
Who maintains goodbarber/goodbarber-skills?
+
goodbarber/goodbarber-skills is maintained by goodbarber. The last recorded GitHub activity is dated 2026-09-07, with 0 open issues.
Are there alternatives to goodbarber-skills?
+
Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.
Deploy goodbarber-skills to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/goodbarber-goodbarber-skills)<a href="https://claudewave.com/repo/goodbarber-goodbarber-skills"><img src="https://claudewave.com/api/badge/goodbarber-goodbarber-skills" alt="Featured on ClaudeWave: goodbarber/goodbarber-skills" width="320" height="64" /></a>More MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
The fastest path to AI-powered full stack observability, even for lean teams.
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!