Flowise MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Flowise MCP Serverlist my recent chatflows"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Flowise MCP Server
A Model Context Protocol (MCP) server that provides programmatic integration with Flowise AI workflow platform. This enables LLM-based tools like Claude Code to create, manage, and run Flowise chatflows and agentflows.
Features
Run Predictions: Execute chatflows with questions, conversation history, file uploads, or lead capture
Manage Chatflows: Create, update, delete, and list chatflows programmatically
Node Discovery: List all available nodes and get detailed specifications for building flows
Full Flow Types: Supports CHATFLOW, AGENTFLOW, MULTIAGENT, and ASSISTANT types
Related MCP server: MCP-Flowise
Prerequisites
Installation
# Clone the repository
git clone https://github.com/wksbx/flowise-mcp-server.git
cd flowise-mcp-server
# Install dependencies
pnpm install
# Build the project
pnpm buildConfiguration
Copy the example environment file:
cp .env.example .envEdit
.envwith your Flowise settings:
FLOWISE_BASE_URL=http://localhost:3000
FLOWISE_API_KEY=your-api-key-hereFLOWISE_BASE_URL: URL where your Flowise instance is runningFLOWISE_API_KEY: API key from Flowise (Settings > API Keys)
Usage
Running Directly
pnpm startRunning with Docker
# Build the Docker image
pnpm docker:build
# Run the container
pnpm docker:runConfiguring with MCP Clients
Add to your MCP client configuration (e.g., Claude Desktop, Claude Code):
Using Node directly:
{
"mcpServers": {
"flowise": {
"command": "node",
"args": ["/path/to/flowise-mcp-server/dist/index.js"],
"env": {
"FLOWISE_BASE_URL": "http://localhost:3000",
"FLOWISE_API_KEY": "your-api-key-here"
}
}
}
}Using Docker:
{
"mcpServers": {
"flowise": {
"command": "docker",
"args": [
"run", "-i", "--rm",
"--add-host=host.docker.internal:host-gateway",
"--env-file", "/path/to/your/.env",
"flowise-mcp-server"
]
}
}
}Available Tools
Prediction Tools
Tool | Description |
| Run a chatflow with a question |
| Run with conversation history for context |
| Run with file attachments (images, documents) |
| Run and capture lead email |
Chatflow Management
Tool | Description |
| List all available chatflows |
| Get a specific chatflow's configuration |
| Create a new chatflow |
| Update an existing chatflow |
| Delete a chatflow (irreversible) |
Node Discovery
Tool | Description |
| List all available node types |
| Get nodes filtered by category |
| Get detailed spec for a specific node type |
Examples
Running a Chatflow
Use create_prediction with:
- chatflowId: "abc123"
- question: "What is the weather today?"Creating a Simple Chatflow
1. Use get_node to fetch specs for needed nodes (e.g., "chatOpenAI", "llmChain")
2. Use create_chatflow with:
- name: "My Chatflow"
- flowData: { nodes: [...], edges: [...] }
- type: "CHATFLOW"Development
# Build TypeScript
pnpm build
# Run in development mode (build + run)
pnpm devTesting
The project includes comprehensive unit tests using Vitest.
# Run tests once
pnpm test
# Run tests in watch mode
pnpm test:watch
# Run tests with coverage report
pnpm test:coverageTest Structure
src/
├── flowise-api.test.ts # API client tests (8 tests)
└── handlers.test.ts # Tool handler tests (26 tests)Project Structure
flowise-mcp-server/
├── src/
│ ├── index.ts # MCP server entry point
│ ├── flowise-api.ts # Flowise API client
│ ├── handlers.ts # Tool handler functions
│ └── *.test.ts # Unit tests
├── dist/ # Compiled JavaScript (generated)
├── package.json
├── tsconfig.json
├── vitest.config.ts # Test configuration
├── Dockerfile
├── .env.example # Environment template
└── mcp-config.example.jsonTroubleshooting
Connection Issues
Ensure Flowise is running and accessible at the configured URL
When using Docker, use
host.docker.internalto connect to Flowise on the host machineVerify your API key is correct in Flowise settings
Authentication Errors
Check that your
FLOWISE_API_KEYmatches one configured in FlowiseAPI keys can be created in Flowise under Settings > API Keys
License
MIT - see LICENSE
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Related Projects
Flowise - Drag & drop UI to build LLM flows
Model Context Protocol - Open protocol for LLM tool integration
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/wksbx/flowise-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server