> ## Documentation Index
> Fetch the complete documentation index at: https://docs.stackone.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Flowise

> Connect StackOne MCP server to FlowiseAI for visual AI agent workflows with access to all StackOne integrations.

## Overview

[FlowiseAI](https://flowiseai.com/) is a visual workflow builder for AI agents with native MCP support.

## Prerequisites

* Flowise installed ([installation guide](https://docs.flowiseai.com/))
* StackOne API key ([get one here](/guides/api-keys))
* StackOne account ID ([find it here](/guides/accounts-section))

## Setup Steps

### Step 1: Prepare StackOne Configuration

First, prepare your StackOne connection details:

1. **Get your API key** from the [StackOne Dashboard](https://app.stackone.com)
2. **Get your account ID** from the Accounts section
3. **Encode your API key** for Basic auth:

```bash theme={null}
echo -n "<stackone_api_key>" | base64
```

Save this base64 token - you'll need it for configuration.

***

### Step 2: Add MCP Server to Flowise

<Steps>
  <Step title="Open Flowise">
    Navigate to your Flowise instance (typically `http://localhost:3000` or `cloud.flowiseai.com`)
  </Step>

  <Step title="Create or Open a Chatflow">
    Create a new chatflow or open an existing one where you want to add StackOne tools
  </Step>

  <Step title="Add MCP Tool">
    1. In the left sidebar, find **"Custom MCP"** within the **"Tools"** section
    2. Drag the **Custom MCP** component onto your canvas
    3. Connect it to your agent or chat model
  </Step>

  <Step title="Configure MCP Server">
    In the MCP Server Config, add the following:

    ```json theme={null}
    {
      "url": "https://api.stackone.com/mcp",
      "headers": {
        "Authorization": "Basic <YOUR_BASE64_TOKEN>",
        "x-account-id": "<YOUR_ACCOUNT_ID>",
        "Content-Type": "application/json",
        "Accept": "application/json,text/event-stream",
      }
    }
    ```
  </Step>
</Steps>

***

### Step 3: Configure Available Tools

Once connected, Flowise will discover all available StackOne tools for your account:

**Tool Filtering:**

* You can filter which tools to expose to your agent
* Search for specific operations by provider or action type
* Enable/disable tools as needed for your workflow

**Example Tools Based on Your Integrations:**

* `gong_crm_search_calls` - Search CRM calls in Gong
* `salesforce_list_accounts` - List accounts from Salesforce
* `slack_send_message` - Send messages via Slack
* Plus hundreds more based on your connected integrations

<Note>
  To see all available integrations and operations:

  * **Browse Integrations**: [stackone.com/integrations](https://www.stackone.com/integrations)
  * **Explore Operations**: [app.stackone.com/connectors](https://app.stackone.com/connectors)
</Note>

***

### Step 4: Build Your Workflow

Now you can use StackOne tools in your Flowise chatflow:

1. **Connect to Agent:** Link the MCP Tool to your AI agent node
2. **Configure Agent Prompt:** Tell your agent when to use StackOne tools
3. **Add Logic:** Combine with other Flowise components (conditional logic, data transformation, etc.)
4. **Test:** Try asking questions that require StackOne data

**Example Agent Prompt:**

```
You are a business data assistant with access to multiple platforms.
Use the appropriate tools based on what the user asks for.
You have access to data from connected business systems and platforms.
Always provide clear, helpful responses based on the data from connected systems.
```

***

## Limitations

* **Transport:** StackOne only supports HTTP transport (no STDIO or SSE)
* **Tool Discovery:** Tools are determined by the enabled actions for the integration configuration associated with the linked account

***

## Next Steps

<CardGroup cols={2}>
  <Card title="Explore All Tools" icon="grid" href="https://app.stackone.com/playground">
    See all available operations in the StackOne Playground
  </Card>

  <Card title="API Documentation" icon="book" href="/platform/introduction">
    Learn about StackOne's Platform API
  </Card>

  <Card title="FlowiseAI Docs" icon="external-link" href="https://docs.flowiseai.com/tutorials/tools-and-mcp">
    Official Flowise MCP documentation
  </Card>

  <Card title="Get Support" icon="headset" href="https://app.stackone.com">
    Contact StackOne support for assistance
  </Card>
</CardGroup>

***

## Additional Resources

* [Flowise MCP Tools Documentation](https://docs.flowiseai.com/tutorials/tools-and-mcp)
* [StackOne API Keys Guide](/guides/api-keys)
* [StackOne Account Management](/guides/accounts-section)
