ds-mcp-flowise 1.1.2 → 1.1.3
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 +41 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,6 +17,19 @@ When connected to Claude Code (or other MCP clients), this server lets the AI:
|
|
|
17
17
|
|
|
18
18
|
Add this to your Claude Code MCP configuration (`claude_desktop_config.json` or via settings):
|
|
19
19
|
|
|
20
|
+
**Windows:**
|
|
21
|
+
```json
|
|
22
|
+
{
|
|
23
|
+
"mcpServers": {
|
|
24
|
+
"flowise": {
|
|
25
|
+
"command": "cmd",
|
|
26
|
+
"args": ["/c", "npx", "-y", "ds-mcp-flowise"]
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
**Mac / Linux:**
|
|
20
33
|
```json
|
|
21
34
|
{
|
|
22
35
|
"mcpServers": {
|
|
@@ -99,6 +112,20 @@ npm install -g ds-mcp-flowise
|
|
|
99
112
|
```
|
|
100
113
|
|
|
101
114
|
Then in your MCP config:
|
|
115
|
+
|
|
116
|
+
**Windows:**
|
|
117
|
+
```json
|
|
118
|
+
{
|
|
119
|
+
"mcpServers": {
|
|
120
|
+
"flowise": {
|
|
121
|
+
"command": "cmd",
|
|
122
|
+
"args": ["/c", "ds-mcp-flowise"]
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
**Mac / Linux:**
|
|
102
129
|
```json
|
|
103
130
|
{
|
|
104
131
|
"mcpServers": {
|
|
@@ -119,6 +146,20 @@ npm run build
|
|
|
119
146
|
```
|
|
120
147
|
|
|
121
148
|
Then in your MCP config:
|
|
149
|
+
|
|
150
|
+
**Windows:**
|
|
151
|
+
```json
|
|
152
|
+
{
|
|
153
|
+
"mcpServers": {
|
|
154
|
+
"flowise": {
|
|
155
|
+
"command": "node",
|
|
156
|
+
"args": ["C:\\path\\to\\DS-MCP-FLOWISE\\dist\\index.js"]
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
```
|
|
161
|
+
|
|
162
|
+
**Mac / Linux:**
|
|
122
163
|
```json
|
|
123
164
|
{
|
|
124
165
|
"mcpServers": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ds-mcp-flowise",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.3",
|
|
4
4
|
"description": "MCP server for building and managing Flowise chatflows and agentflows. Provides AI assistants with comprehensive knowledge of Flowise nodes, tools for workflow creation, and direct API integration to deploy chatflows.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|