gapbase-mcp 0.0.1 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +102 -9
- package/data/gaps.json +4268 -0
- package/data/trends.json +47 -0
- package/package.json +24 -3
- package/src/index.js +248 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 The Vibepreneur
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -4,19 +4,112 @@
|
|
|
4
4
|
|
|
5
5
|
GapBase is a database of real pain points scraped from Reddit, LinkedIn, and X — each one a validated opportunity for a vibe-coded micro-SaaS. This MCP server lets you search the full database directly from your AI coding environment.
|
|
6
6
|
|
|
7
|
-
- 474 validated gaps across 7 industries (ecommerce, legal, accounting, property,
|
|
8
|
-
- Problem statement + vibe-code solution for every gap
|
|
9
|
-
- 5 weekly
|
|
10
|
-
- Free, no signup, runs locally
|
|
7
|
+
- 🗂️ **474 validated gaps** across 7 industries (ecommerce, healthcare, legal, accounting, property, dental, veterinary)
|
|
8
|
+
- 🧠 **Problem statement + vibe-code solution** for every gap
|
|
9
|
+
- 🔥 **5 weekly trending gaps** from live social signals (TikTok, HBO, viral challenges)
|
|
10
|
+
- 🚀 **Free, no signup, zero network calls** — everything runs locally
|
|
11
|
+
- 🔗 Each gap links to the full blueprint (tech stack, GTM, outreach templates) at [thevibepreneur.com](https://thevibepreneur.com)
|
|
11
12
|
|
|
12
|
-
##
|
|
13
|
+
## Install
|
|
13
14
|
|
|
14
|
-
|
|
15
|
+
```bash
|
|
16
|
+
npm install -g gapbase-mcp
|
|
17
|
+
```
|
|
15
18
|
|
|
16
|
-
|
|
19
|
+
Then add to your MCP client config:
|
|
17
20
|
|
|
18
|
-
|
|
19
|
-
|
|
21
|
+
### Claude Desktop
|
|
22
|
+
|
|
23
|
+
Edit `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS) or the equivalent on your OS, and add:
|
|
24
|
+
|
|
25
|
+
```json
|
|
26
|
+
{
|
|
27
|
+
"mcpServers": {
|
|
28
|
+
"gapbase": {
|
|
29
|
+
"command": "npx",
|
|
30
|
+
"args": ["-y", "gapbase-mcp"]
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
Restart Claude Desktop. You should see a 🔌 icon indicating the server is connected.
|
|
37
|
+
|
|
38
|
+
### Cursor
|
|
39
|
+
|
|
40
|
+
Edit `~/.cursor/mcp.json`:
|
|
41
|
+
|
|
42
|
+
```json
|
|
43
|
+
{
|
|
44
|
+
"mcpServers": {
|
|
45
|
+
"gapbase": {
|
|
46
|
+
"command": "npx",
|
|
47
|
+
"args": ["-y", "gapbase-mcp"]
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
### Windsurf
|
|
54
|
+
|
|
55
|
+
Edit `~/.codeium/windsurf/mcp_config.json`:
|
|
56
|
+
|
|
57
|
+
```json
|
|
58
|
+
{
|
|
59
|
+
"mcpServers": {
|
|
60
|
+
"gapbase": {
|
|
61
|
+
"command": "npx",
|
|
62
|
+
"args": ["-y", "gapbase-mcp"]
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
## Usage
|
|
69
|
+
|
|
70
|
+
Once installed, just ask your AI assistant questions in natural language:
|
|
71
|
+
|
|
72
|
+
> **"Find me 5 legal gaps about billing or time tracking."**
|
|
73
|
+
>
|
|
74
|
+
> **"What ecommerce gap targets Shopify merchants who want to leave Klaviyo?"**
|
|
75
|
+
>
|
|
76
|
+
> **"Show me this week's trending gaps with short build windows."**
|
|
77
|
+
>
|
|
78
|
+
> **"What are the top pain points in property management right now?"**
|
|
79
|
+
>
|
|
80
|
+
> **"Give me a dental gap I could vibe code this weekend."**
|
|
81
|
+
|
|
82
|
+
Claude / Cursor will automatically call the appropriate tool and return problem statements with vibe-code solution directions. Every result includes a `full_blueprint` URL pointing to the complete breakdown on thevibepreneur.com.
|
|
83
|
+
|
|
84
|
+
## Tools
|
|
85
|
+
|
|
86
|
+
| Tool | What it does |
|
|
87
|
+
|---|---|
|
|
88
|
+
| `list_industries` | 7 industries covered with gap counts per industry |
|
|
89
|
+
| `search_gaps` | Keyword and/or industry filtered search across 474 validated B2B gaps (the primary tool) |
|
|
90
|
+
| `get_gap` | Fetch a single gap by id or slug |
|
|
91
|
+
| `get_viral_social_gaps` | 5 weekly viral consumer trends (TikTok, HBO, short-window builds) — specialized, ask explicitly |
|
|
92
|
+
| `get_stats` | Database statistics and metadata |
|
|
93
|
+
|
|
94
|
+
## Philosophy
|
|
95
|
+
|
|
96
|
+
**Free MCP users get the diagnosis. The cure lives on the website.**
|
|
97
|
+
|
|
98
|
+
Each gap in the MCP bundle includes:
|
|
99
|
+
- Problem statement (what's broken)
|
|
100
|
+
- Vibe-code solution (a build direction)
|
|
101
|
+
- Industry + role
|
|
102
|
+
- `full_blueprint` URL with tech stack, difficulty, GTM playbook, and outreach templates
|
|
103
|
+
|
|
104
|
+
If you find a gap worth building, click through to the blueprint on thevibepreneur.com for the complete kit. [Founding Member access](https://thevibepreneur.com/discover?utm_source=mcp) unlocks the full 474 blueprints forever.
|
|
105
|
+
|
|
106
|
+
## Privacy
|
|
107
|
+
|
|
108
|
+
This MCP server runs **100% locally.** It does not phone home, does not track usage, does not collect any data about you, your queries, or your Claude conversations. The entire gap database is bundled in the npm package — no network calls, no API keys, no auth.
|
|
109
|
+
|
|
110
|
+
## About
|
|
111
|
+
|
|
112
|
+
Built by [The Vibepreneur](https://thevibepreneur.com). New gaps added weekly. Follow development and ship notes at [thevibepreneur.com/gaps](https://thevibepreneur.com/gaps).
|
|
20
113
|
|
|
21
114
|
## License
|
|
22
115
|
|