How to integrate Turbot pipes MCP with Autogen

This guide walks you through connecting Turbot pipes to AutoGen using the Composio tool router. By the end, you'll have a working Turbot pipes agent that can show all recent activity logs for your account, list all workspaces i have access to, retrieve your current organization details through natural language commands. This guide will help you understand how to give your AutoGen agent real control over a Turbot pipes account through Composio's Turbot pipes MCP server. Before we dive in, let's take a quick look at the key ideas and tools involved.

Turbot pipes logoTurbot pipes
Api Key

Turbot Pipes is an intelligence, automation, and security platform for DevOps, delivering hosted Steampipe databases, dashboards, and powerful snapshots. It's built to simplify infrastructure visibility, automate security checks, and speed up compliance workflows.

169 Tools

Introduction

This guide walks you through connecting Turbot pipes to AutoGen using the Composio tool router. By the end, you'll have a working Turbot pipes agent that can show all recent activity logs for your account, list all workspaces i have access to, retrieve your current organization details through natural language commands.

This guide will help you understand how to give your AutoGen agent real control over a Turbot pipes account through Composio's Turbot pipes MCP server.

Before we dive in, let's take a quick look at the key ideas and tools involved.

Also integrate Turbot pipes with

TL;DR

Here's what you'll learn:
  • Get and set up your OpenAI and Composio API keys
  • Install the required dependencies for Autogen and Composio
  • Initialize Composio and create a Tool Router session for Turbot pipes
  • Wire that MCP URL into Autogen using McpWorkbench and StreamableHttpServerParams
  • Configure an Autogen AssistantAgent that can call Turbot pipes tools
  • Run a live chat loop where you ask the agent to perform Turbot pipes operations

What is AutoGen?

Autogen is a framework for building multi-agent conversational AI systems from Microsoft. It enables you to create agents that can collaborate, use tools, and maintain complex workflows.

Key features include:

  • Multi-Agent Systems: Build collaborative agent workflows
  • MCP Workbench: Native support for Model Context Protocol tools
  • Streaming HTTP: Connect to external services through streamable HTTP
  • AssistantAgent: Pre-built agent class for tool-using assistants

What is the Turbot pipes MCP server, and what's possible with it?

The Turbot pipes MCP server is an implementation of the Model Context Protocol that connects your AI agent and assistants like Claude, Cursor, etc directly to your Turbot pipes account. It provides structured and secure access to your Turbot Pipes platform, so your agent can perform actions like retrieving activity logs, managing workspaces, exploring identities, viewing organizations, and handling notification endpoints on your behalf.

  • Activity monitoring and auditing: Ask your agent to fetch detailed activity logs for your account, helping you track user actions and audit changes across your Turbot Pipes environment.
  • Workspace and organization management: Retrieve and list all organizations and workspaces associated with your account to keep tabs on your team’s collaboration spaces and resources.
  • Identity exploration and avatar retrieval: Let your agent search identities, fetch details by handle, and even grab profile avatars—useful for user management and directory automation.
  • Notification endpoint discovery: Quickly list all user notifiers set up for your account, so you can manage or audit where and how notifications are delivered.
  • Account and connection insights: Access detailed information about the authenticated actor and their connections to maintain visibility and control over account access and linked integrations.

What is the Composio tool router, and how does it fit here?

What is Composio SDK?

Composio's Composio SDK helps agents find the right tools for a task at runtime. You can plug in multiple toolkits (like Gmail, HubSpot, and GitHub), and the agent will identify the relevant app and action to complete multi-step workflows. This can reduce token usage and improve the reliability of tool calls. Read more here: Getting started with Composio SDK

The tool router generates a secure MCP URL that your agents can access to perform actions.

How the Composio SDK works

The Composio SDK follows a three-phase workflow:

  1. Discovery: Searches for tools matching your task and returns relevant toolkits with their details.
  2. Authentication: Checks for active connections. If missing, creates an auth config and returns a connection URL via Auth Link.
  3. Execution: Executes the action using the authenticated connection.

Step-by-step Guide

Step by step08 STEPS
1

Prerequisites

You will need:

  • A Composio API key
  • An OpenAI API key (used by Autogen's OpenAIChatCompletionClient)
  • A Turbot pipes account you can connect to Composio
  • Some basic familiarity with Autogen and Python async
2

Getting API Keys for OpenAI and Composio

OpenAI API Key
  • Go to the OpenAI dashboard and create an API key. You'll need credits to use the models, or you can connect to another model provider.
  • Keep the API key safe.
Composio API Key
  • Log in to the Composio dashboard.
  • Navigate to your API settings and generate a new API key.
  • Store this key securely as you'll need it for authentication.
3

Install dependencies

bash
pip install composio python-dotenv
pip install autogen-agentchat autogen-ext-openai autogen-ext-tools

Install Composio, Autogen extensions, and dotenv.

What's happening:

  • composio connects your agent to Turbot pipes via MCP
  • autogen-agentchat provides the AssistantAgent class
  • autogen-ext-openai provides the OpenAI model client
  • autogen-ext-tools provides MCP workbench support

4

Set up environment variables

bash
COMPOSIO_API_KEY=your-composio-api-key
OPENAI_API_KEY=your-openai-api-key
USER_ID=your-user-identifier@example.com

Create a .env file in your project folder.

What's happening:

  • COMPOSIO_API_KEY is required to talk to Composio
  • OPENAI_API_KEY is used by Autogen's OpenAI client
  • USER_ID is how Composio identifies which user's Turbot pipes connections to use
5

Import dependencies and create Tool Router session

python
import asyncio
import os
from dotenv import load_dotenv
from composio import Composio

from autogen_agentchat.agents import AssistantAgent
from autogen_ext.models.openai import OpenAIChatCompletionClient
from autogen_ext.tools.mcp import McpWorkbench, StreamableHttpServerParams

load_dotenv()

async def main():
    # Initialize Composio and create a Turbot pipes session
    composio = Composio(api_key=os.getenv("COMPOSIO_API_KEY"))
    session = composio.create(
        user_id=os.getenv("USER_ID"),
        toolkits=["turbot_pipes"]
    )
    url = session.mcp.url
What's happening:
  • load_dotenv() reads your .env file
  • Composio(api_key=...) initializes the SDK
  • create(...) creates a Tool Router session that exposes Turbot pipes tools
  • session.mcp.url is the MCP endpoint that Autogen will connect to
6

Configure MCP parameters for Autogen

python
# Configure MCP server parameters for Streamable HTTP
server_params = StreamableHttpServerParams(
    url=url,
    timeout=30.0,
    sse_read_timeout=300.0,
    terminate_on_close=True,
    headers={"x-api-key": os.getenv("COMPOSIO_API_KEY")}
)

Autogen expects parameters describing how to talk to the MCP server. That is what StreamableHttpServerParams is for.

What's happening:

  • url points to the Tool Router MCP endpoint from Composio
  • timeout is the HTTP timeout for requests
  • sse_read_timeout controls how long to wait when streaming responses
  • terminate_on_close=True cleans up the MCP server process when the workbench is closed
7

Create the model client and agent

python
# Create model client
model_client = OpenAIChatCompletionClient(
    model="gpt-5",
    api_key=os.getenv("OPENAI_API_KEY")
)

# Use McpWorkbench as context manager
async with McpWorkbench(server_params) as workbench:
    # Create Turbot pipes assistant agent with MCP tools
    agent = AssistantAgent(
        name="turbot_pipes_assistant",
        description="An AI assistant that helps with Turbot pipes operations.",
        model_client=model_client,
        workbench=workbench,
        model_client_stream=True,
        max_tool_iterations=10
    )

What's happening:

  • OpenAIChatCompletionClient wraps the OpenAI model for Autogen
  • McpWorkbench connects the agent to the MCP tools
  • AssistantAgent is configured with the Turbot pipes tools from the workbench
8

Run the interactive chat loop

python
print("Chat started! Type 'exit' or 'quit' to end the conversation.\n")
print("Ask any Turbot pipes related question or task to the agent.\n")

# Conversation loop
while True:
    user_input = input("You: ").strip()

    if user_input.lower() in ["exit", "quit", "bye"]:
        print("\nGoodbye!")
        break

    if not user_input:
        continue

    print("\nAgent is thinking...\n")

    # Run the agent with streaming
    try:
        response_text = ""
        async for message in agent.run_stream(task=user_input):
            if hasattr(message, "content") and message.content:
                response_text = message.content

        # Print the final response
        if response_text:
            print(f"Agent: {response_text}\n")
        else:
            print("Agent: I encountered an issue processing your request.\n")

    except Exception as e:
        print(f"Agent: Sorry, I encountered an error: {str(e)}\n")
What's happening:
  • The script prompts you in a loop with You:
  • Autogen passes your input to the model, which decides which Turbot pipes tools to call via MCP
  • agent.run_stream(...) yields streaming messages as the agent thinks and calls tools
  • Typing exit, quit, or bye ends the loop

Complete Code

Here's the complete code to get you started with Turbot pipes and AutoGen:

python
import asyncio
import os
from dotenv import load_dotenv
from composio import Composio

from autogen_agentchat.agents import AssistantAgent
from autogen_ext.models.openai import OpenAIChatCompletionClient
from autogen_ext.tools.mcp import McpWorkbench, StreamableHttpServerParams

load_dotenv()

async def main():
    # Initialize Composio and create a Turbot pipes session
    composio = Composio(api_key=os.getenv("COMPOSIO_API_KEY"))
    session = composio.create(
        user_id=os.getenv("USER_ID"),
        toolkits=["turbot_pipes"]
    )
    url = session.mcp.url

    # Configure MCP server parameters for Streamable HTTP
    server_params = StreamableHttpServerParams(
        url=url,
        timeout=30.0,
        sse_read_timeout=300.0,
        terminate_on_close=True,
        headers={"x-api-key": os.getenv("COMPOSIO_API_KEY")}
    )

    # Create model client
    model_client = OpenAIChatCompletionClient(
        model="gpt-5",
        api_key=os.getenv("OPENAI_API_KEY")
    )

    # Use McpWorkbench as context manager
    async with McpWorkbench(server_params) as workbench:
        # Create Turbot pipes assistant agent with MCP tools
        agent = AssistantAgent(
            name="turbot_pipes_assistant",
            description="An AI assistant that helps with Turbot pipes operations.",
            model_client=model_client,
            workbench=workbench,
            model_client_stream=True,
            max_tool_iterations=10
        )

        print("Chat started! Type 'exit' or 'quit' to end the conversation.\n")
        print("Ask any Turbot pipes related question or task to the agent.\n")

        # Conversation loop
        while True:
            user_input = input("You: ").strip()

            if user_input.lower() in ['exit', 'quit', 'bye']:
                print("\nGoodbye!")
                break

            if not user_input:
                continue

            print("\nAgent is thinking...\n")

            # Run the agent with streaming
            try:
                response_text = ""
                async for message in agent.run_stream(task=user_input):
                    if hasattr(message, 'content') and message.content:
                        response_text = message.content

                # Print the final response
                if response_text:
                    print(f"Agent: {response_text}\n")
                else:
                    print("Agent: I encountered an issue processing your request.\n")

            except Exception as e:
                print(f"Agent: Sorry, I encountered an error: {str(e)}\n")

if __name__ == "__main__":
    asyncio.run(main())

Conclusion

You now have an Autogen assistant wired into Turbot pipes through Composio's Tool Router and MCP. From here you can:
  • Add more toolkits to the toolkits list, for example notion or hubspot
  • Refine the agent description to point it at specific workflows
  • Wrap this script behind a UI, Slack bot, or internal tool
Once the pattern is clear for Turbot pipes, you can reuse the same structure for other MCP-enabled apps with minimal code changes.
TOOLS

Supported Tools

Every Turbot pipes action and event your agent gets out of the box.

Get Authenticated Actor

Tool to retrieve the authenticated actor.

List Actor Activity

Tool to list activities for the authenticated actor.

List actor connections

Tool to list connections associated with the authenticated actor.

List Actor Organizations

Tool to list organizations associated with the authenticated actor.

List Actor Workspaces

Tool to list workspaces for the authenticated actor.

Start login via Email

Tool to start login process by sending a confirmation code to a user's email.

Create User Signup

Tool to create a new user account via signup.

Create org connection

Tool to create a new connection for an organization.

Create Org Connection Folder

Tool to create a new connection folder for an organization.

Create Org Workspace Aggregator

Tool to create an aggregator for a workspace of an organization.

Create Org Workspace Connection

Tool to create a connection on an org workspace or associate an existing org connection to the workspace.

Create Org Workspace Connection Folder

Tool to create a connection folder in a workspace of an organization.

Create Org Workspace Query

Tool to execute a SQL query in an org workspace using POST method.

Create Org Workspace Snapshot

Tool to create a new workspace snapshot for an organization.

Create User AI Key

Tool to create a new AI provider API key at the user level.

Create User Connection

Tool to create a new connection for a user.

Create User Integration

Tool to create a new integration for a user.

Create User Notifier

Tool to create a new notifier for a user.

Create User Password

Tool to create or rotate a user password.

Create User Workspace Connection

Tool to create a connection on a workspace for a user.

Create User Workspace Connection Folder

Tool to create a connection folder in a workspace of a user.

Create User Workspace Datatank

Tool to create a new user workspace Datatank.

Create User Workspace Datatank Table

Tool to create a new user workspace datatank table.

Create User Workspace Mod Variable Setting

Tool to create a setting for a mod variable in a user workspace.

Create User Workspace Notifier

Tool to create a new notifier for a user workspace.

Delete Org Workspace Conversation

Tool to delete a specific org workspace conversation.

Delete Organization

Tool to delete a specified organization if you have appropriate access.

Delete Org Billing Subscription

Tool to delete an organization billing subscription.

Delete Org Connection Permission

Tool to delete permission for a connection defined on an org.

Delete Organization Workspace

Tool to delete an organization workspace.

Delete Org Workspace Mod Variable Setting

Tool to delete setting for a mod variable in an organization workspace.

Delete User Avatar

Tool to delete custom avatar for a user.

Delete User Integration

Tool to delete an integration configured for a user.

Delete User Workspace Mod Variable Setting

Tool to delete a mod variable setting in a user workspace.

Delete User Workspace Notifier

Tool to delete a notifier for a user workspace.

Delete User Workspace Pipeline

Tool to delete a pipeline from a user's workspace.

Get Auth Provider

Tool to initiate OAuth authentication flow with a provider.

Get User Workspace Conversation

Tool to retrieve details for a specific user workspace conversation.

Get Datatank Table

Tool to get the details for a workspace Datatank table.

Get Organization

Tool to retrieve organization information by handle.

Get Organization Billing Invoice

Tool to get an invoice for an organization.

Get Org Connection Permission

Tool to retrieve permission details for an org connection.

Get Organization Integration

Tool to get details of an integration configured on an organization.

Get Organization Member

Tool to retrieve a specific organization member by org handle and user handle.

Get Org Workspace Connection

Tool to get the details for a workspace and connection association on an organization.

Get Org Workspace Connection Folder

Tool to retrieve a connection folder for an organization workspace.

Get Org Workspace Flowpipe Trigger

Tool to get the details of a trigger for a workspace in an organization.

Get Org Workspace Integration

Tool to get details of an integration available for a workspace belonging to an organization.

Get Org Workspace Mod Variable Setting

Tool to get setting for a mod variable in an organization workspace.

Get Org Workspace Notifier

Tool to retrieve a notifier from an org workspace.

Get Org Workspace Query Data

Tool to execute a SQL query in an org workspace and retrieve results.

Get Tenant

Tool to retrieve tenant information by handle.

Get Tenant Avatar

Tool to retrieve public avatar image for a tenant.

Get User

Tool to retrieve user information by handle.

Get User AI Key

Tool to retrieve AI provider API key metadata at the user level.

Get User Billing Plan

Tool to get the current user billing plan.

Get User Billing Upcoming Invoice

Tool to get the upcoming invoice for a user.

Get User Connection

Tool to retrieve details of a connection belonging to a user.

Get User Email

Tool to retrieve a specific user email record with metadata.

Get User Integration

Tool to get details of an integration configured on a user.

Get User Database Password

Tool to retrieve user database password.

Get User Preferences

Tool to retrieve user preferences including email subscription settings.

Get User Process

Tool to retrieve process information for a user.

Get User Workspace

Tool to retrieve workspace details for a specific user.

Get User Workspace Aggregator

Tool to get the details of an aggregator belonging to a workspace of a user.

Get User Workspace Connection

Tool to get the details for a workspace and connection association for a user.

Get User Workspace Connection Folder

Tool to retrieve a connection folder for a user workspace.

Get User Workspace Datatank

Tool to retrieve user workspace datatank details.

Get User Workspace Flowpipe Mod

Tool to retrieve details of an installed flowpipe mod in a user workspace.

Get User Workspace Flowpipe Pipeline

Tool to retrieve pipeline details for a user workspace.

Get User Workspace Integration

Tool to get details of an integration available for a workspace belonging to a user.

Get User Workspace Mod

Tool to retrieve details of an installed mod in a user's workspace.

Get User Workspace Mod Variable Setting

Tool to get setting for a mod variable in a user workspace.

Get User Workspace Notifier

Tool to retrieve a notifier from a user workspace.

Get User Workspace Pipeline

Tool to get the details of a pipeline for a workspace of a user.

Get User Workspace Process

Tool to retrieve process details for a user workspace.

Get User Workspace Process Log

Tool to retrieve process logs for a user workspace process.

Get User Workspace Query

Tool to execute a SQL query in a user workspace and retrieve results.

Get User Workspace Query Data

Tool to execute a SQL query in a user workspace and retrieve results.

Get User Workspace Schema

Tool to retrieve workspace schema details for a specific user.

Get User Workspace Schema Table

Tool to get details about a specific table in a user workspace schema.

Get Identity

Tool to retrieve a specific identity by handle.

Get Identity Avatar

Tool to retrieve avatar image for an identity.

List Identities

Tool to list all identities.

Initiate User Login

Tool to initiate user login.

Install User Slack Integration

Tool to install a Slack integration for a user identity.

Install User Workspace Flowpipe Mod

Tool to install a flowpipe mod to a user's workspace.

Install User Workspace Mod

Tool to install a mod to a user workspace.

List Organization Processes

Tool to list processes for an organization.

List Organization Service Accounts

Tool to list service accounts at the organization level.

List Organization Usage

Tool to list all usage metrics for an organization.

List Org Workspace Datatank

Tool to list org workspace Datatank with pagination support.

List Organization Workspace Flowpipe Mod Variables

Tool to list all variables for a flowpipe mod in an organization workspace.

List Org Workspace Mods

Tool to list organization workspace installed mods with pagination support.

List Organization Workspace Pipelines

Tool to list pipelines for a workspace of an organization.

List Org Workspace Processes

Tool to list processes associated with an org workspace.

List Organization Workspaces

Tool to list workspaces for a specific organization.

Get Tenant Settings

Tool to retrieve tenant settings.

List Tenants

Tool to list tenants the actor is a member of.

List User AI Keys

Tool to list AI provider API keys configured at the user level.

List User Audit Logs

Tool to list audit logs for a specific user.

List User Billing Invoices

Tool to list user invoices with pagination support.

List User Billing Payment Methods

Tool to list user billing payment methods.

List User Billing Subscriptions

Tool to list user billing subscriptions.

List User Connections

Tool to list connections for a specific user by user handle.

List User Constraints

Tool to list all applicable constraints for a user.

List User Emails

Tool to list emails for a user along with metadata information for each item.

List User Integrations

Tool to list integrations configured for a user.

List User Processes

Tool to list processes for a user.

List User Usage

Tool to list all usage metrics for a user.

List User Workspace Aggregators

Tool to list aggregators for a workspace of a user.

List User Workspace Aggregator Connections

Tool to list all connections that are part of an aggregator in a user workspace.

List User Workspace Audit Logs

Tool to list audit logs for a specific user workspace.

List User Workspace Connections

Tool to list connections explicitly defined or associated to a workspace.

List User Workspace Connection Associations

Tool to list connections associated with a workspace for a specific user.

List User Workspace Connection Folders

Tool to list connection folders for a user workspace.

List User Workspace Connection Tree

Tool to list connection tree for a user workspace.

List User Workspace Conversations

Tool to list AI conversations in a user workspace with optional filtering and pagination.

List User Workspace Datatank

Tool to list user workspace Datatank with pagination support.

List User Workspace Datatank Partitions

Tool to list user workspace Datatank partitions with pagination support.

List User Workspace Datatank Table

Tool to list user workspace Datatank tables with pagination support.

List User Workspace Database Logs

Tool to list database query logs for a specific user workspace.

List User Workspace Flowpipe Inputs

Tool to list Flowpipe inputs for a user workspace.

List User Workspace Flowpipe Mod Variables

Tool to list all variables for a flowpipe mod in a user workspace.

List User Workspace Flowpipe Pipelines

Tool to list Flowpipe pipelines for a user workspace.

List User Workspace Pipeline Triggers

Tool to list Flowpipe triggers associated with a specific pipeline in a user workspace.

List User Workspace Flowpipe Triggers

Tool to list Flowpipe triggers for a user workspace.

List User Workspace Integrations

Tool to list integrations available for a user workspace.

List User Workspace Mods

Tool to list user workspace installed mods with pagination support.

List User Workspace Mod Variables

Tool to list all variables applicable for a mod in a workspace specific to a user.

List User Workspace Notifiers

Tool to list all notifiers for a user workspace.

List User Workspace Pipelines

Tool to list pipelines for a workspace of a user.

List User Workspace Processes

Tool to list processes associated with a user workspace.

List User Workspaces

Tool to list workspaces for a specific user.

List User Workspace Schemas

Tool to list schemas for a user workspace.

List User Workspace Schema Tables

Tool to list tables for a user workspace schema with pagination support.

List User Workspace Snapshots

Tool to list workspace snapshots for a user.

List User Workspace Usage

Tool to list the usage associated with a user workspace.

Post User Workspace Notifier Command

Tool to post a command for a notifier in a user's workspace.

Post User Workspace Query

Tool to perform a SQL query in a user workspace.

Run Organization Workspace Command

Tool to run a command in an organization workspace.

Run User Workspace Command

Tool to run a command in a user workspace.

Run User Workspace Flowpipe Pipeline Command

Tool to run a command on a Flowpipe pipeline in a user workspace.

Run User Workspace Flowpipe Trigger Command

Tool to run a command on a trigger in a workspace belonging to a user.

Run User Workspace Query

Tool to perform a SQL query in a user workspace using POST method.

Send Chat Message to User Workspace AI

Tool to send a chat message to the AI agent in a user workspace.

Test User AI Key

Tool to test whether an AI provider API key is valid at the user level.

Test User Connection

Tool to test a user connection for basic connectivity.

Test User Integration

Tool to test the config for a user integration to check for basic connectivity before you create it.

Test User Workspace Connection

Tool to test the config for a connection configured on a user workspace to check for basic connectivity.

Uninstall Flowpipe Mod

Tool to uninstall a flowpipe mod from a user's workspace.

Uninstall Org Workspace Flowpipe Mod

Tool to uninstall a flowpipe mod from an organization workspace.

Update User Workspace Conversation

Tool to update a user workspace conversation (e.

Update Org Billing Subscription

Tool to update an organization billing subscription.

Update Org Connection

Tool to update the details of a connection belonging to an organization.

Update Org Connection Folder

Tool to update the details of an org connection folder.

Update Organization Member Role

Tool to update the role of an organization member.

Update Organization Service Account

Tool to update an existing service account at the organization level.

Update Organization Service Account Token

Tool to update an existing token for an organization-level service account.

Update User

Tool to update user information including handle name, display name, or URL.

Update User AI Key

Tool to update an existing AI provider API key at the user level.

Update User Connection

Tool to update the details of a connection belonging to a user.

Update User Integration

Tool to update details of an integration configured for a user.

Update User Preferences

Tool to update user preferences for email communications.

Update User Token

Tool to update a user token's status between active and inactive.

Update User Workspace

Tool to update the workspace for a user.

List User Notifiers

Tool to list all notifiers for a user.

Delete User Token

Tool to delete a specific user token.

Get User Token

Tool to retrieve details of a specific user token.

FAQ

Frequently asked questions

With a standalone Turbot pipes MCP server, the agents and LLMs can only access a fixed set of Turbot pipes tools tied to that server. However, with the Composio Tool Router, agents can dynamically load tools from Turbot pipes and many other apps based on the task at hand, all through a single MCP endpoint.

Yes, you can. Autogen fully supports MCP integration. You get structured tool calling, message history handling, and model orchestration while Tool Router takes care of discovering and serving the right Turbot pipes tools.

Yes, absolutely. You can configure which Turbot pipes scopes and actions are allowed when connecting your account to Composio. You can also bring your own OAuth credentials or API configuration so you keep full control over what the agent can do.

All sensitive data such as tokens, keys, and configuration is fully encrypted at rest and in transit. Composio is SOC 2 Type 2 compliant and follows strict security practices so your Turbot pipes data and credentials are handled as safely as possible.

Start with Turbot pipes.It takes 30 seconds.

Managed auth, hosted MCP servers, and every Turbot pipes tool your agent needs.Free to start.

Start building