How to integrate Turbot pipes MCP with LangChain

This guide walks you through connecting Turbot pipes to LangChain 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 LangChain 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 LangChain 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 LangChain 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
  • Connect your Turbot pipes project to Composio
  • Create a Tool Router MCP session for Turbot pipes
  • Initialize an MCP client and retrieve Turbot pipes tools
  • Build a LangChain agent that can interact with Turbot pipes
  • Set up an interactive chat interface for testing

What is LangChain?

LangChain is a framework for developing applications powered by language models. It provides tools and abstractions for building agents that can reason, use tools, and maintain conversation context.

Key features include:

  • Agent Framework: Build agents that can use tools and make decisions
  • MCP Integration: Connect to external services through Model Context Protocol adapters
  • Memory Management: Maintain conversation history across interactions
  • Multi-Provider Support: Works with OpenAI, Anthropic, and other LLM providers

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 step10 STEPS
1

Prerequisites

Before starting this tutorial, make sure you have:
  • Python 3.10 or higher installed on your system
  • A Composio account with an API key
  • An OpenAI API key
  • Basic familiarity with Python and async programming
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

npm install @composio/langchain @langchain/core @langchain/openai @langchain/mcp-adapters dotenv

Install the required packages for LangChain with MCP support.

What's happening:

  • @composio/langchain provides Composio integration for LangChain
  • @langchain/mcp-adapters enables MCP client connections
  • @langchain/core is the core agent framework
  • dotenv/config loads environment variables
4

Set up environment variables

bash
COMPOSIO_API_KEY=your_composio_api_key_here
COMPOSIO_USER_ID=your_composio_user_id_here
OPENAI_API_KEY=your_openai_api_key_here

Create a .env file in your project root.

What's happening:

  • COMPOSIO_API_KEY authenticates your requests to Composio's API
  • COMPOSIO_USER_ID identifies the user for session management
  • OPENAI_API_KEY enables access to OpenAI's language models
5

Import dependencies

import { Composio } from '@composio/core';
import { LangchainProvider } from '@composio/langchain';
import { MultiServerMCPClient } from "@langchain/mcp-adapters";
import { createAgent } from "langchain";
import * as readline from 'readline';
import 'dotenv/config';

dotenv.config();
What's happening:
  • We're importing LangChain's MCP adapter and Composio SDK
  • The dotenv/config import loads environment variables from your .env file
  • This setup prepares the foundation for connecting LangChain with Turbot pipes functionality through MCP
6

Initialize Composio client

const composioApiKey = process.env.COMPOSIO_API_KEY;
const userId = process.env.COMPOSIO_USER_ID;

if (!composioApiKey) throw new Error('COMPOSIO_API_KEY is not set');
if (!userId) throw new Error('COMPOSIO_USER_ID is not set');

async function main() {
    const composio = new Composio({
        apiKey: composioApiKey as string,
        provider: new LangchainProvider()
    });
What's happening:
  • We're loading the COMPOSIO_API_KEY from environment variables and validating it exists
  • Creating a Composio instance that will manage our connection to Turbot pipes tools
  • Validating that COMPOSIO_USER_ID is also set before proceeding
7

Create a Tool Router session

const session = await composio.create(
    userId as string,
    {
        toolkits: ['turbot_pipes']
    }
);

const url = session.mcp.url;
What's happening:
  • We're creating a Tool Router session that gives your agent access to Turbot pipes tools
  • The create method takes the user ID and specifies which toolkits should be available
  • The returned session.mcp.url is the MCP server URL that your agent will use
  • This approach allows the agent to dynamically load and use Turbot pipes tools as needed
8

Configure the agent with the MCP URL

const client = new MultiServerMCPClient({
    "turbot_pipes-agent": {
        transport: "http",
        url: url,
        headers: {
            "x-api-key": process.env.COMPOSIO_API_KEY
        }
    }
});

const tools = await client.getTools();

const agent = createAgent({ model: "gpt-5", tools });
What's happening:
  • We're creating a MultiServerMCPClient that connects to our Turbot pipes MCP server via HTTP
  • The client is configured with a name and the URL from our Tool Router session
  • getTools() retrieves all available Turbot pipes tools that the agent can use
  • We're creating a LangChain agent using the GPT-5 model
9

Set up interactive chat interface

let conversationHistory: any[] = [];

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

const rl = readline.createInterface({
    input: process.stdin,
    output: process.stdout,
    prompt: 'You: '
});

rl.prompt();

rl.on('line', async (userInput: string) => {
    const trimmedInput = userInput.trim();

    if (['exit', 'quit', 'bye'].includes(trimmedInput.toLowerCase())) {
        console.log("\nGoodbye!");
        rl.close();
        process.exit(0);
    }

    if (!trimmedInput) {
        rl.prompt();
        return;
    }

    conversationHistory.push({ role: "user", content: trimmedInput });
    console.log("\nAgent is thinking...\n");

    const response = await agent.invoke({ messages: conversationHistory });
    conversationHistory = response.messages;

    const finalResponse = response.messages[response.messages.length - 1]?.content;
    console.log(`Agent: ${finalResponse}\n`);
        
        rl.prompt();
    });

    rl.on('close', () => {
        console.log('\n👋 Session ended.');
        process.exit(0);
    });
What's happening:
  • We initialize an empty conversationHistory list to maintain context across interactions
  • A readline interface is used to continuously accept user input from the command line
  • When a user types a message, it's added to the conversation history and sent to the agent
  • The agent processes the request using the invoke() method with the full conversation history
  • Users can type 'exit', 'quit', or 'bye' to end the chat session gracefully
10

Run the application

main().catch((err) => {
    console.error('Fatal error:', err);
    process.exit(1);
});
What's happening:
  • We call the main() function to start the application

Complete Code

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

import { Composio } from '@composio/core';
import { LangchainProvider } from '@composio/langchain';
import { MultiServerMCPClient } from "@langchain/mcp-adapters";  
import { createAgent } from "langchain";
import * as readline from 'readline';
import 'dotenv/config';

const composioApiKey = process.env.COMPOSIO_API_KEY;
const userId = process.env.COMPOSIO_USER_ID;

if (!composioApiKey) throw new Error('COMPOSIO_API_KEY is not set');
if (!userId) throw new Error('COMPOSIO_USER_ID is not set');

async function main() {
    const composio = new Composio({
        apiKey: composioApiKey as string,
        provider: new LangchainProvider()
    });

    const session = await composio.create(
        userId as string,
        {
            toolkits: ['turbot_pipes']
        }
    );

    const url = session.mcp.url;
    
    const client = new MultiServerMCPClient({
        "turbot_pipes-agent": {
            transport: "http",
            url: url,
            headers: {
                "x-api-key": process.env.COMPOSIO_API_KEY
            }
        }
    });
    
    const tools = await client.getTools();
  
    const agent = createAgent({ model: "gpt-5", tools });
    
    let conversationHistory: any[] = [];
    
    console.log("Chat started! Type 'exit' or 'quit' to end the conversation.\n");
    console.log("Ask any Turbot pipes related question or task to the agent.\n");
    
    const rl = readline.createInterface({
        input: process.stdin,
        output: process.stdout,
        prompt: 'You: '
    });

    rl.prompt();

    rl.on('line', async (userInput: string) => {
        const trimmedInput = userInput.trim();
        
        if (['exit', 'quit', 'bye'].includes(trimmedInput.toLowerCase())) {
            console.log("\nGoodbye!");
            rl.close();
            process.exit(0);
        }
        
        if (!trimmedInput) {
            rl.prompt();
            return;
        }
        
        conversationHistory.push({ role: "user", content: trimmedInput });
        console.log("\nAgent is thinking...\n");
        
        const response = await agent.invoke({ messages: conversationHistory });
        conversationHistory = response.messages;
        
        const finalResponse = response.messages[response.messages.length - 1]?.content;
        console.log(`Agent: ${finalResponse}\n`);
        
        rl.prompt();
    });

    rl.on('close', () => {
        console.log('\nSession ended.');
        process.exit(0);
    });
}

main().catch((err) => {
    console.error('Fatal error:', err);
    process.exit(1);
});

Conclusion

You've successfully built a LangChain agent that can interact with Turbot pipes through Composio's Tool Router.

Key features of this implementation:

  • Dynamic tool loading through Composio's Tool Router
  • Conversation history maintenance for context-aware responses
  • Async Python provides clean, efficient execution of agent workflows
You can extend this further by adding error handling, implementing specific business logic, or integrating additional Composio toolkits to create multi-app workflows.
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. LangChain 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