ds-mcp-flowise 1.1.4 → 1.1.6

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.
Files changed (2) hide show
  1. package/README.md +24 -7
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -45,9 +45,11 @@ That's it. No cloning, no building. The `npx` command downloads and runs it auto
45
45
 
46
46
  ### 2. Start a Conversation
47
47
 
48
- Open Claude Code and describe what you want to build:
48
+ Open Claude Code and **explicitly tell it to use the flowise tools**:
49
49
 
50
- > "Build me a RAG chatbot that uses Pinecone for vector storage and OpenAI for the LLM"
50
+ > "**Use the flowise tools** to build me a RAG chatbot that uses Pinecone for vector storage and OpenAI for the LLM. Give me the JSON to import into Flowise."
51
+
52
+ **Important:** Without mentioning "flowise tools" or "flowise MCP", Claude may try to build a chat app from scratch instead of generating a Flowise chatflow.
51
53
 
52
54
  ### 3. Get Your Flow
53
55
 
@@ -212,13 +214,28 @@ Then in your MCP config:
212
214
 
213
215
  ## Example Prompts
214
216
 
217
+ **Important:** You must explicitly tell Claude to use the flowise MCP tools, otherwise it may try to build something from scratch instead of using Flowise nodes.
218
+
215
219
  Once connected, try asking Claude:
216
220
 
217
- - "What vector stores does Flowise support?"
218
- - "Show me how to build a simple chatbot with memory"
219
- - "Create a RAG flow using Pinecone and Claude"
220
- - "What nodes can connect to a ConversationChain?"
221
- - "Build me an agent that can search the web and query a database"
221
+ - "**Use the flowise tools** to search for Ollama nodes and build me a chatflow JSON"
222
+ - "**Using the flowise MCP**, what vector stores does Flowise support?"
223
+ - "**Use flowise tools** to build a simple chatbot with memory and give me the JSON to import"
224
+ - "**With the flowise MCP**, create a RAG flow using Pinecone and OpenAI embeddings"
225
+ - "**Use the flowise search** to find nodes that can connect to a ConversationChain"
226
+ - "**Using flowise tools**, build me an agent that can search the web and query a database"
227
+
228
+ The key is to include phrases like:
229
+ - "use the flowise tools"
230
+ - "using the flowise MCP"
231
+ - "with the flowise MCP"
232
+ - "use flowise search"
233
+
234
+ **Pro tip for proper edge connections:** Ask Claude to look at a template first to understand the edge format:
235
+
236
+ > "Use flowise tools to get a template for a simple chatbot, then use that as a reference to build me a chatflow with Ollama"
237
+
238
+ Templates contain properly formatted edges with `sourceHandle`, `targetHandle`, and `type: "buttonedge"` that Flowise requires.
222
239
 
223
240
  ## What's Included
224
241
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ds-mcp-flowise",
3
- "version": "1.1.4",
3
+ "version": "1.1.6",
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",