# Bishop81/wpgoldmine-mcp [Health: Active]

**Category:** 🎯 Marketing  
**Repository:** https://github.com/Bishop81/wpgoldmine-mcp  
**GitHub Stars:** 0  
**npm Downloads (last month):** 370  
**Views:** 2  
**Installs:** 0  
**Upvotes:** 0  
**Directory Page:** https://allmcps.com/mcp/bishop81-wpgoldmine-mcp

## Description
MCP server to find WordPress and WooCommerce plugin opportunities: large, established plugins weakened by abandonment, low ratings, or poor support that you could realistically replace. Powered by wpgoldmine.io.

## Tools
Capabilities this server exposes over MCP:

- **list_opportunity_presets** — List the named opportunity presets (e.g. abandoned-plugins, low-rated-popular, beatable-niche) you can pass to find_plugin_opportunities. Each preset is a curated query over the WordPress.org plugin directory for commercially takeable plugins. Powered by wpgoldmine.io.
- **find_plugin_opportunities** — Find WordPress (or WooCommerce) plugins that are commercial opportunities — large, established user bases paired with abandonment, low ratings, or poor support, i.e. plugins you could realistically replace or out-build. Use a `preset` for a curated angle, and/or narrow by `tag` (niche), install range, and max rating. Returns a ranked, capped list with opportunity scores. Powered by wpgoldmine.io.
- **get_plugin** — Get the opportunity snapshot for one plugin by its WordPress.org slug: installs, rating, last-updated, support resolution, and opportunity/abandonment/monetization scores. Powered by wpgoldmine.io.

## Claude Desktop Quick Installation
Install path detected from listing signals. Uses `npx` (confidence: high):

```json
"mcpServers": {
  "wpgoldmine-mcp": {
    "command": "npx",
    "args": ["-y","wpgoldmine-mcp"]
  }
}
```

## Documentation & README

# wpgoldmine-mcp

An [MCP](https://modelcontextprotocol.io) server for finding **WordPress plugin opportunities** — large,
established plugins weakened by **abandonment, low ratings, or poor support**, i.e. plugins you could
realistically replace or out-build. It lets AI agents (Claude, Cursor, Windsurf, etc.) query the
WordPress.org plugin directory through the lens of "what's a takeable market here?"

Powered by [wpgoldmine.io](https://wpgoldmine.io). All querying runs server-side, so **no local
database or scraping is required.**

## Install / run

```jsonc
// Claude Desktop / any MCP client config
{
  "mcpServers": {
    "wpgoldmine": {
      "command": "npx",
      "args": ["-y", "wpgoldmine-mcp"]
    }
  }
}
```

## Tools

### `list_opportunity_presets`
Lists the curated opportunity angles you can pass as `preset` (e.g. `abandoned-plugins`,
`low-rated-popular`, `beatable-niche`, `unsupported-plugins`, `high-opportunity`,
`newest-opportunities`).

### `find_plugin_opportunities`
Returns a ranked, capped list of plugin opportunities.

| Param | Type | Description |
| --- | --- | --- |
| `preset` | string (optional) | A preset key. Composes with `tag`. |
| `tag` | string (optional) | Narrow to a niche by WordPress.org tag, e.g. `seo`, `forms`, `backup`. |
| `ecosystem` | `wordpress` \| `woocommerce` (optional) | Defaults to `wordpress`. |
| `min_installs` / `max_installs` | number (optional) | Active-install bounds. |
| `max_rating` | number (optional) | Max rating on a 0–100 scale (lower = more dissatisfied users). |

### `get_plugin`
Opportunity snapshot for one plugin by slug: installs, rating, last-updated, support resolution, and
opportunity / abandonment / monetization scores.

**Example agent uses:** "Find abandoned WordPress plugins in the forms niche I could rebuild," "Which
popular SEO plugins have the worst ratings?", "Give me the opportunity score for wp-super-cache."

## Config

- `WPGOLDMINE_API_KEY` — optional. A WP Goldmine account API token (from your account settings) raises
  the result limit and unlocks extra fields. Without it, the server uses the free, capped tier.
- `WPGOLDMINE_API_BASE` — override the API base (default `https://wpgoldmine.io`).

```jsonc
{
  "mcpServers": {
    "wpgoldmine": {
      "command": "npx",
      "args": ["-y", "wpgoldmine-mcp"],
      "env": { "WPGOLDMINE_API_KEY": "wpg_your_token_here" }
    }
  }
}
```

## License

MIT

