MCPcopy
hub / github.com/FlowiseAI/Flowise

github.com/FlowiseAI/Flowise @flowise-components@3.1.3 sqlite

repository ↗ · DeepWiki ↗ · release flowise-components@3.1.3 ↗
9,350 symbols 23,636 edges 1,854 files 290 documented · 3%
README

Release Notes Discord Twitter Follow GitHub star chart GitHub fork

English | 繁體中文 | 简体中文 | 日本語 | 한국어

Build AI Agents, Visually

📚 Table of Contents

⚡Quick Start

Download and Install NodeJS >= 20.0.0

  1. Install Flowise bash npm install -g flowise
  2. Start Flowise

    bash npx flowise start

  3. Open http://localhost:3000

🐳 Docker

Docker Compose

  1. Clone the Flowise project
  2. Go to docker folder at the root of the project
  3. Copy .env.example file, paste it into the same location, and rename to .env file
  4. docker compose up -d
  5. Open http://localhost:3000
  6. You can bring the containers down by docker compose stop

Docker Image

  1. Build the image locally:

    bash docker build --no-cache -t flowise .

  2. Run image:

    bash docker run -d --name flowise -p 3000:3000 flowise

  3. Stop image:

    bash docker stop flowise

👨‍💻 Developers

Flowise has 3 different modules in a single mono repository.

  • server: Node backend to serve API logics
  • ui: React frontend
  • components: Third-party nodes integrations
  • api-documentation: Auto-generated swagger-ui API docs from express

Prerequisite

  • Install PNPM bash npm i -g pnpm

Setup

  1. Clone the repository:

    bash git clone https://github.com/FlowiseAI/Flowise.git

  2. Go into repository folder:

    bash cd Flowise

  3. Install all dependencies of all modules:

    bash pnpm install

  4. Build all the code:

    bash pnpm build

Exit code 134 (JavaScript heap out of memory)

If you get this error when running the above `build` script, try increasing the Node.js heap size and run the script again:

```bash
# macOS / Linux / Git Bash
export NODE_OPTIONS="--max-old-space-size=4096"

# Windows PowerShell
$env:NODE_OPTIONS="--max-old-space-size=4096"

# Windows CMD
set NODE_OPTIONS=--max-old-space-size=4096
```

Then run:

```bash
pnpm build
```
  1. Start the app:

    bash pnpm start

    You can now access the app on http://localhost:3000

  2. For development build:

    • Create .env file and specify the VITE_PORT (refer to .env.example) in packages/ui
    • Create .env file and specify the PORT (refer to .env.example) in packages/server
    • Run:

      bash pnpm dev

    Any code changes will reload the app automatically on http://localhost:8080

🌱 Env Variables

Flowise supports different environment variables to configure your instance. You can specify the following variables in the .env file inside packages/server folder. Read more

📖 Documentation

You can view the Flowise Docs here

🌐 Self Host

Deploy Flowise self-hosted in your existing infrastructure, we support various deployments

Others

-   [Railway](https://docs.flowiseai.com/configuration/deployment/railway)

    [![Deploy on Railway](https://railway.app/button.svg)](https://railway.app/template/pn4G8S?referralCode=WVNPD9)

-   [Northflank](https://northflank.com/stacks/deploy-flowiseai)

    [![Deploy to Northflank](https://assets.northflank.com/deploy_to_northflank_smm_36700fb050.svg)](https://northflank.com/stacks/deploy-flowiseai)

-   [Render](https://docs.flowiseai.com/configuration/deployment/render)

    [![Deploy to Render](https://render.com/images/deploy-to-render-button.svg)](https://docs.flowiseai.com/configuration/deployment/render)

-   [HuggingFace Spaces](https://docs.flowiseai.com/configuration/deployment/hugging-face)

    <a href="https://huggingface.co/spaces/FlowiseAI/Flowise"><img src="https://huggingface.co/datasets/huggingface/badges/raw/main/open-in-hf-spaces-sm.svg" alt="HuggingFace Spaces"></a>

-   [Elestio](https://elest.io/open-source/flowiseai)

    [![Deploy on Elestio](https://elest.io/images/logos/deploy-to-elestio-btn.png)](https://elest.io/open-source/flowiseai)

-   [Sealos](https://template.sealos.io/deploy?templateName=flowise)

    [![Deploy on Sealos](https://sealos.io/Deploy-on-Sealos.svg)](https://template.sealos.io/deploy?templateName=flowise)

-   [RepoCloud](https://repocloud.io/details/?app_id=29)

    [![Deploy on RepoCloud](https://d16t0pc4846x52.cloudfront.net/deploy.png)](https://repocloud.io/details/?app_id=29)

☁️ Flowise Cloud

Get Started with Flowise Cloud.

🙋 Support

Feel free to ask any questions, raise problems, and request new features in Discussion.

🙌 Contributing

Thanks go to these awesome contributors

See Contributing Guide. Reach out to us at Discord if you have any questions or issues.

Star History Chart

📄 License

Source code in this repository is made available under the Apache License Version 2.0.

Extension points exported contracts — how you extend this code

ExtendedRecordManagerInterface (Interface)
(no doc) [11 implementers]
packages/components/src/indexing.ts
IMetricsProvider (Interface)
(no doc) [4 implementers]
packages/server/src/Interface.Metrics.ts
PmNode (Interface)
Minimal interface for walking a ProseMirror JSON tree.
packages/agentflow/src/atoms/utils/xmlTagUtils.ts
ObserveApiContextValue (Interface)
(no doc)
packages/observe/src/infrastructure/store/ObserveContext.tsx
DocumentLoader (Interface)
(no doc) [9 implementers]
packages/components/src/indexing.ts
IWebhookListenerRegistry (Interface)
(no doc) [3 implementers]
packages/server/src/services/webhook-listener/registry.ts
NodeValidationResult (Interface)
Validation result grouped by node
packages/agentflow/src/features/canvas/components/ValidationFeedback.tsx
ObserveConfigContextValue (Interface)
(no doc)
packages/observe/src/infrastructure/store/ObserveContext.tsx

Core symbols most depended-on inside this repo

query
called by 1402
packages/components/nodes/vectorstores/Pinecone/Pinecone_LlamaIndex.ts
parse
called by 679
packages/components/nodes/memory/AgentMemory/interface.ts
stringify
called by 674
packages/components/nodes/memory/AgentMemory/interface.ts
getCredentialParam
called by 348
packages/components/src/utils.ts
getRunningExpressApp
called by 284
packages/server/src/utils/getRunningExpressApp.ts
getTime
called by 280
packages/components/nodes/recordmanager/MySQLRecordManager/MySQLrecordManager.ts
enqueueSnackbar
called by 249
packages/ui/src/store/actions.js
getErrorMessage
called by 246
packages/server/src/errors/utils.ts

Shape

Function 3,680
Method 2,989
Class 2,122
Interface 515
Enum 44

Languages

TypeScript100%

Modules by API surface

packages/components/nodes/tools/MicrosoftTeams/core.ts123 symbols
packages/components/nodes/tools/Gmail/core.ts105 symbols
packages/components/nodes/tools/MicrosoftOutlook/core.ts89 symbols
packages/ui/src/views/chatmessage/ChatMessage.jsx84 symbols
packages/components/src/utils.ts78 symbols
packages/components/nodes/tools/Jira/core.ts77 symbols
packages/components/src/Interface.ts70 symbols
packages/components/src/handler.ts67 symbols
packages/components/src/agents.ts66 symbols
packages/components/nodes/tools/GoogleDrive/core.ts66 symbols
packages/components/nodes/tools/GoogleCalendar/core.ts60 symbols
packages/ui/src/utils/genericHelper.js55 symbols

Dependencies from manifests, versioned

@anthropic-ai/sdk0.73.0 · 1×
@apidevtools/json-schema-ref-parser11.7.0 · 1×
@arizeai/openinference-instrumentation-langchain2.0.0 · 1×
@aws-sdk/client-bedrock3.966.0 · 1×
@aws-sdk/client-bedrock-runtime3.966.0 · 1×
@aws-sdk/client-dynamodb3.360.0 · 1×
@aws-sdk/client-kendra3.750.0 · 1×
@aws-sdk/client-s33.844.0 · 1×
@aws-sdk/client-secrets-manager3.699.0 · 1×
@aws-sdk/client-sns3.699.0 · 1×
@aws-sdk/client-sts3.699.0 · 1×
@azure/storage-blob12.29.0 · 1×

Datastores touched

(mongodb)Database · 1 repos
mydbDatabase · 1 repos

For agents

$ claude mcp add Flowise \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact