gapbase-mcp 0.0.1
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/README.md +23 -0
- package/package.json +29 -0
package/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# gapbase-mcp
|
|
2
|
+
|
|
3
|
+
**Query 474 validated startup gaps from Claude Desktop, Cursor, and Windsurf.**
|
|
4
|
+
|
|
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
|
+
|
|
7
|
+
- 474 validated gaps across 7 industries (ecommerce, legal, accounting, property, healthcare, dental, veterinary)
|
|
8
|
+
- Problem statement + vibe-code solution for every gap
|
|
9
|
+
- 5 weekly trend gaps from social signals
|
|
10
|
+
- Free, no signup, runs locally
|
|
11
|
+
|
|
12
|
+
## Status
|
|
13
|
+
|
|
14
|
+
`v0.0.1` — name reserved. Full release landing shortly with 4 tools (`search_gaps`, `get_gap`, `list_industries`, `get_trending_gaps`).
|
|
15
|
+
|
|
16
|
+
## Links
|
|
17
|
+
|
|
18
|
+
- Website: [thevibepreneur.com](https://thevibepreneur.com)
|
|
19
|
+
- Full gap database: [thevibepreneur.com/gaps](https://thevibepreneur.com/gaps)
|
|
20
|
+
|
|
21
|
+
## License
|
|
22
|
+
|
|
23
|
+
MIT
|
package/package.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "gapbase-mcp",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "MCP server for GapBase — query 474 validated startup gaps from Claude Desktop, Cursor, and Windsurf. Free, no signup. Full build: coming soon.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"mcp",
|
|
7
|
+
"model-context-protocol",
|
|
8
|
+
"claude",
|
|
9
|
+
"claude-desktop",
|
|
10
|
+
"cursor",
|
|
11
|
+
"windsurf",
|
|
12
|
+
"startup-ideas",
|
|
13
|
+
"micro-saas",
|
|
14
|
+
"vibe-coding",
|
|
15
|
+
"gapbase",
|
|
16
|
+
"validated-ideas",
|
|
17
|
+
"indie-hackers"
|
|
18
|
+
],
|
|
19
|
+
"homepage": "https://thevibepreneur.com",
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "https://github.com/thevibepreneur/gapbase-mcp"
|
|
23
|
+
},
|
|
24
|
+
"bugs": {
|
|
25
|
+
"url": "https://thevibepreneur.com"
|
|
26
|
+
},
|
|
27
|
+
"author": "The Vibepreneur <thevibepreneur.agent@gmail.com> (https://thevibepreneur.com)",
|
|
28
|
+
"license": "MIT"
|
|
29
|
+
}
|