@houtini/fanout-mcp 0.2.0 → 0.2.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 +9 -17
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -73,29 +73,21 @@ Plus detailed markdown report with all data.
|
|
|
73
73
|
## Installation
|
|
74
74
|
|
|
75
75
|
### Prerequisites
|
|
76
|
-
- Node.js 18+
|
|
77
76
|
- Claude Desktop (or any MCP-compatible client)
|
|
78
77
|
- Anthropic API key
|
|
78
|
+
- Node.js 18+ (for local build only)
|
|
79
79
|
|
|
80
|
-
### Setup
|
|
80
|
+
### Quick Setup (Recommended)
|
|
81
81
|
|
|
82
|
-
|
|
83
|
-
```bash
|
|
84
|
-
git clone https://github.com/houtiniai/fanout-mcp.git
|
|
85
|
-
cd fanout-mcp
|
|
86
|
-
npm install
|
|
87
|
-
npm run build
|
|
88
|
-
```
|
|
89
|
-
|
|
90
|
-
2. **Configure Claude Desktop:**
|
|
82
|
+
**The fastest way to get started** - no cloning or building required:
|
|
91
83
|
|
|
92
|
-
Add to `claude_desktop_config.json
|
|
84
|
+
1. **Add to `claude_desktop_config.json`:**
|
|
93
85
|
```json
|
|
94
86
|
{
|
|
95
87
|
"mcpServers": {
|
|
96
88
|
"fanout": {
|
|
97
|
-
"command": "
|
|
98
|
-
"args": ["/
|
|
89
|
+
"command": "npx",
|
|
90
|
+
"args": ["-y", "@houtini/fanout-mcp@latest"],
|
|
99
91
|
"env": {
|
|
100
92
|
"ANTHROPIC_API_KEY": "sk-ant-api03-your-key-here"
|
|
101
93
|
}
|
|
@@ -197,7 +189,7 @@ This tool implements techniques from cutting-edge Information Retrieval research
|
|
|
197
189
|
**Query Decomposition** - Least-to-Most prompting breaks complex topics into prerequisite, core, and follow-up queries.
|
|
198
190
|
|
|
199
191
|
**Want to understand the research?** 📖 Read our accessible explainer:
|
|
200
|
-
### **[Understanding Keyword Fan-Out: The Research Explained](research/keyword-fanout-explained.md)**
|
|
192
|
+
### **[Understanding Keyword Fan-Out: The Research Explained](https://github.com/houtini-ai/fanout-mcp/blob/main/research/keyword-fanout-explained.md)**
|
|
201
193
|
|
|
202
194
|
This document explains:
|
|
203
195
|
- Why query fan-out matters for content optimization
|
|
@@ -206,7 +198,7 @@ This document explains:
|
|
|
206
198
|
- Real examples from testing
|
|
207
199
|
- When to use which variant types
|
|
208
200
|
|
|
209
|
-
For implementation details, see [`research/google-fanout-adaptation.md`](research/google-fanout-adaptation.md).
|
|
201
|
+
For implementation details, see [`research/google-fanout-adaptation.md`](https://github.com/houtini-ai/fanout-mcp/blob/main/research/google-fanout-adaptation.md).
|
|
210
202
|
|
|
211
203
|
---
|
|
212
204
|
|
|
@@ -615,7 +607,7 @@ For commercial licensing enquiries, please visit https://houtini.com
|
|
|
615
607
|
|
|
616
608
|
**Richard Baxter**
|
|
617
609
|
Houtini.ai
|
|
618
|
-
GitHub: https://github.com/
|
|
610
|
+
GitHub: https://github.com/houtini-ai
|
|
619
611
|
|
|
620
612
|
**Questions?** Open an issue on GitHub
|
|
621
613
|
**Commercial enquiries:** https://houtini.com
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@houtini/fanout-mcp",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Advanced content gap analysis using Query Decomposition, Keyword Fan-Out, and Self-RAG for Generative Engine Optimization (GEO)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -33,11 +33,11 @@
|
|
|
33
33
|
"license": "Apache-2.0",
|
|
34
34
|
"repository": {
|
|
35
35
|
"type": "git",
|
|
36
|
-
"url": "https://github.com/
|
|
36
|
+
"url": "https://github.com/houtini-ai/fanout-mcp.git"
|
|
37
37
|
},
|
|
38
|
-
"homepage": "https://
|
|
38
|
+
"homepage": "https://houtini.com",
|
|
39
39
|
"bugs": {
|
|
40
|
-
"url": "https://github.com/
|
|
40
|
+
"url": "https://github.com/houtini-ai/fanout-mcp/issues"
|
|
41
41
|
},
|
|
42
42
|
"engines": {
|
|
43
43
|
"node": ">=18.0.0"
|