fixflow-mcp 1.0.2 → 1.0.4
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 +26 -12
- package/fastmcp_docs_server/requirements.txt +3 -1
- package/fastmcp_docs_server/server.py +19 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -17,24 +17,23 @@
|
|
|
17
17
|
|
|
18
18
|
---
|
|
19
19
|
|
|
20
|
-
##
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
20
|
+
## Without FixFlow vs With FixFlow (MCP)
|
|
21
|
+
|
|
22
|
+
| | ❌ Without FixFlow | ✅ With FixFlow (MCP) |
|
|
23
|
+
|---|---|---|
|
|
24
|
+
| **Error detection** | You notice the error, copy it, ask the agent | Agent detects it **automatically mid-task** |
|
|
25
|
+
| **Finding a fix** | Agent Googles → 8 irrelevant threads from 2017 | Agent calls `resolve_kb_id()` → **community-verified card in milliseconds** |
|
|
26
|
+
| **Applying the fix** | Trial and error, might break more things | **Copy-paste verified command**, battle-tested by the community |
|
|
27
|
+
| **Time to fix** | 15–30 minutes | **5–30 seconds** |
|
|
28
|
+
| **Memory** | Fix dies with the chat session | Fix is saved **forever in the community KB** |
|
|
29
|
+
| **Community effect** | Zero — your pain benefits nobody | **Every solved problem helps all future agents** |
|
|
30
|
+
| **Next time** | Same 15 minutes. Again. | **0 seconds** — card is already there |
|
|
28
31
|
|
|
29
32
|
With FixFlow, your agent **automatically detects the error, searches the community knowledge base, and applies the verified fix — before you even notice there was a problem.**
|
|
30
33
|
And if it's a new problem? It solves it, saves it, and **the entire community benefits forever.**
|
|
31
34
|
|
|
32
35
|
---
|
|
33
36
|
|
|
34
|
-
## ⚡ Quick Start
|
|
35
|
-
|
|
36
|
-
Add to your `claude_desktop_config.json` / `mcp_config.json`:
|
|
37
|
-
|
|
38
37
|
```json
|
|
39
38
|
{
|
|
40
39
|
"mcpServers": {
|
|
@@ -47,6 +46,21 @@ Add to your `claude_desktop_config.json` / `mcp_config.json`:
|
|
|
47
46
|
}
|
|
48
47
|
```
|
|
49
48
|
|
|
49
|
+
### ☁️ Option 2: Cloud Connection (No Install)
|
|
50
|
+
|
|
51
|
+
Add directly without installing anything locally:
|
|
52
|
+
|
|
53
|
+
```json
|
|
54
|
+
{
|
|
55
|
+
"mcpServers": {
|
|
56
|
+
"fixflow-cloud": {
|
|
57
|
+
"command": "curl",
|
|
58
|
+
"args": ["-N", "-s", "https://adjacent-indigo-barnacle.fastmcp.app/mcp"]
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
```
|
|
63
|
+
|
|
50
64
|
Add to your system prompt / `.cursorrules` / `.windsurfrules`:
|
|
51
65
|
|
|
52
66
|
```text
|
|
@@ -600,7 +600,25 @@ def get_kb_stats() -> str:
|
|
|
600
600
|
|
|
601
601
|
def main():
|
|
602
602
|
"""CLI entry point for fixflow-mcp."""
|
|
603
|
-
|
|
603
|
+
import argparse
|
|
604
|
+
parser = argparse.ArgumentParser(description="FixFlow MCP Server")
|
|
605
|
+
parser.add_argument(
|
|
606
|
+
"transport",
|
|
607
|
+
choices=["stdio", "sse"],
|
|
608
|
+
default="stdio",
|
|
609
|
+
nargs="?",
|
|
610
|
+
help="Transport protocol (stdio or sse)"
|
|
611
|
+
)
|
|
612
|
+
parser.add_argument("--host", default="0.0.0.0", help="Host for SSE")
|
|
613
|
+
parser.add_argument("--port", type=int, default=8000, help="Port for SSE")
|
|
614
|
+
|
|
615
|
+
args = parser.parse_args()
|
|
616
|
+
|
|
617
|
+
if args.transport == "sse":
|
|
618
|
+
sys.stderr.write(f"🚀 Starting FixFlow SSE server on {args.host}:{args.port}\n")
|
|
619
|
+
mcp.run(transport='sse', host=args.host, port=args.port)
|
|
620
|
+
else:
|
|
621
|
+
mcp.run(transport='stdio')
|
|
604
622
|
|
|
605
623
|
|
|
606
624
|
if __name__ == "__main__":
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fixflow-mcp",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.0.4",
|
|
4
|
+
"description": "FixFlow — Stack Overflow for AI Agents. Now with Cloud Support!",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bin": {
|
|
@@ -26,4 +26,4 @@
|
|
|
26
26
|
"engines": {
|
|
27
27
|
"node": ">=18"
|
|
28
28
|
}
|
|
29
|
-
}
|
|
29
|
+
}
|