mcp-flowise

mcp-flowise

Exposes local Flowise chatflows as MCP tools, enabling listing and running chatflows from any MCP client.

Category
Visit Server

README

mcp-flowise

MCP server that exposes the chatflows of your local Flowise as tools for Claude, Cursor, free-code, or any MCP client.

PyPI npm

Tools

Simple mode (default):

  • list_chatflows() — lists available chatflows (id + name).
  • create_prediction(chatflow_id, question) — runs a chatflow and returns its response.

Dynamic mode (FLOWISE_DYNAMIC=true):

  • Registers one tool per chatflow at startup, e.g. flowise_support_bot(question).

Requirements

  • A running Flowise instance (default http://localhost:3000)
  • Node.js 18+ or Python 3.10+ with uv

Installation

One-command install (any client)

npx -y @suamkf08/mcp-flowise-install --client claude
npx -y @suamkf08/mcp-flowise-install --client cursor
npx -y @suamkf08/mcp-flowise-install --client free-code
npx -y @suamkf08/mcp-flowise-install --client vscode
npx -y @suamkf08/mcp-flowise-install --client windsurf

The script asks for your FLOWISE_API_ENDPOINT and FLOWISE_API_KEY, writes the config automatically, and tells you where it was saved. Restart your client after running it.


Manual install

Claude Desktop

Add this to your claude_desktop_config.json (~/Library/Application Support/Claude/claude_desktop_config.json on macOS, %APPDATA%\Claude\claude_desktop_config.json on Windows):

Option A — via npm (Node.js required):

{
  "mcpServers": {
    "mcp-flowise": {
      "command": "npx",
      "args": ["-y", "@suamkf08/mcp-flowise"],
      "env": {
        "FLOWISE_API_ENDPOINT": "http://localhost:3000",
        "FLOWISE_API_KEY": ""
      }
    }
  }
}

Option B — via uvx (uv required):

Install uv first if you don't have it:

# macOS / Linux
curl -LsSf https://astral.sh/uv/install.sh | sh

# Windows
powershell -c "irm https://astral.sh/uv/install.ps1 | iex"

Then add to claude_desktop_config.json:

{
  "mcpServers": {
    "mcp-flowise": {
      "command": "uvx",
      "args": ["mcp-flowise"],
      "env": {
        "FLOWISE_API_ENDPOINT": "http://localhost:3000",
        "FLOWISE_API_KEY": ""
      }
    }
  }
}

Cursor

Add to .cursor/mcp.json in your project (or ~/.cursor/mcp.json globally):

{
  "mcpServers": {
    "mcp-flowise": {
      "command": "npx",
      "args": ["-y", "@suamkf08/mcp-flowise"],
      "env": {
        "FLOWISE_API_ENDPOINT": "http://localhost:3000",
        "FLOWISE_API_KEY": ""
      }
    }
  }
}

free-code

Add to ~/.free-code/agent/mcp.json (or import with /mcp-import):

{
  "mcpServers": {
    "mcp-flowise": {
      "command": "npx",
      "args": ["-y", "@suamkf08/mcp-flowise"],
      "env": {
        "FLOWISE_API_ENDPOINT": "http://localhost:3000",
        "FLOWISE_API_KEY": ""
      }
    }
  }
}

Then enable it in free-code:

/mcp enable mcp-flowise
/reload

Configuration

Environment variable Default Description
FLOWISE_API_ENDPOINT http://localhost:3000 Base URL of your Flowise instance
FLOWISE_API_KEY (empty) Bearer token (Flowise → Settings → API Keys)
FLOWISE_DYNAMIC false Set to true to register one tool per chatflow
FLOWISE_WHITELIST_ID (empty) Comma-separated chatflow IDs to include
FLOWISE_BLACKLIST_ID (empty) Comma-separated chatflow IDs to exclude
FLOWISE_WHITELIST_NAME_REGEX (empty) Only include chatflows whose name matches
FLOWISE_BLACKLIST_NAME_REGEX (empty) Exclude chatflows whose name matches

Development

git clone https://github.com/suamkf08/mcp-flowise
cd mcp-flowise
uv run mcp-flowise        # starts over stdio; Ctrl+C to quit

Inspect with MCP Inspector:

uv run mcp dev mcp_flowise/server.py

Flowise API reference

  • List chatflows: GET {endpoint}/api/v1/chatflows
  • Run chatflow: POST {endpoint}/api/v1/prediction/{chatflowId} with {"question": "..."}
  • Auth header: Authorization: Bearer <FLOWISE_API_KEY>

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
E2B

E2B

Using MCP to run code via e2b.

Official
Featured