How to integrate Turbot pipes MCP with OpenAI Agents SDK

This guide walks you through connecting Turbot pipes to the OpenAI Agents SDK 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 OpenAI Agents SDK 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 the OpenAI Agents SDK 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 OpenAI Agents SDK 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 necessary dependencies
  • Initialize Composio and create a Tool Router session for Turbot pipes
  • Configure an AI agent that can use Turbot pipes as a tool
  • Run a live chat session where you can ask the agent to perform Turbot pipes operations

What is OpenAI Agents SDK?

The OpenAI Agents SDK is a lightweight framework for building AI agents that can use tools and maintain conversation state. It provides a simple interface for creating agents with hosted MCP tool support.

Key features include:

  • Hosted MCP Tools: Connect to external services through hosted MCP endpoints
  • SQLite Sessions: Persist conversation history across interactions
  • Simple API: Clean interface with Agent, Runner, and tool configuration
  • Streaming Support: Real-time response streaming for interactive applications

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

Prerequisites

Before starting, make sure you have:
  • Composio API Key and OpenAI API Key
  • Primary know-how of OpenAI Agents SDK
  • A live Turbot pipes project
  • Some knowledge of Python or Typescript
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
3

Install dependencies

npm install @composio/openai-agents @openai/agents dotenv

Install the Composio SDK and the OpenAI Agents SDK.

4

Set up environment variables

bash
OPENAI_API_KEY=sk-...your-api-key
COMPOSIO_API_KEY=your-api-key
USER_ID=composio_user@gmail.com

Create a .env file and add your OpenAI and Composio API keys.

5

Import dependencies

import 'dotenv/config';
import { Composio } from '@composio/core';
import { OpenAIAgentsProvider } from '@composio/openai-agents';
import { Agent, hostedMcpTool, run, OpenAIConversationsSession } from '@openai/agents';
import * as readline from 'readline';
What's happening:
  • You're importing all necessary libraries.
  • The Composio and OpenAIAgentsProvider classes are imported to connect your OpenAI agent to Composio tools like Turbot pipes.
6

Set up the Composio instance

dotenv.config();

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

if (!composioApiKey) {
  throw new Error('COMPOSIO_API_KEY is not set. Create a .env file with COMPOSIO_API_KEY=your_key');
}
if (!userId) {
  throw new Error('USER_ID is not set');
}

// Initialize Composio
const composio = new Composio({
  apiKey: composioApiKey,
  provider: new OpenAIAgentsProvider(),
});
What's happening:
  • dotenv.config() loads your .env file so COMPOSIO_API_KEY and USER_ID are available as environment variables.
  • Creating a Composio instance using the API Key and OpenAIAgentsProvider class.
7

Create a Tool Router session

// Create Tool Router session for Turbot pipes
const session = await composio.create(userId as string, {
  toolkits: ['turbot_pipes'],
});
const mcpUrl = session.mcp.url;

What is happening:

  • You give the Tool Router the user id and the toolkits you want available. Here, it is only turbot_pipes.
  • The router checks the user's Turbot pipes connection and prepares the MCP endpoint.
  • The returned session.mcp.url is the MCP URL that your agent will use to access Turbot pipes.
  • This approach keeps things lightweight and lets the agent request Turbot pipes tools only when needed during the conversation.
8

Configure the agent

// Configure agent with MCP tool
const agent = new Agent({
  name: 'Assistant',
  model: 'gpt-5',
  instructions:
    'You are a helpful assistant that can access Turbot pipes. Help users perform Turbot pipes operations through natural language.',
  tools: [
    hostedMcpTool({
      serverLabel: 'tool_router',
      serverUrl: mcpUrl,
      headers: { 'x-api-key': composioApiKey },
      requireApproval: 'never',
    }),
  ],
});
What's happening:
  • We're creating an Agent instance with a name, model (gpt-5), and clear instructions about its purpose.
  • The agent's instructions tell it that it can access Turbot pipes and help with queries, inserts, updates, authentication, and fetching database information.
  • The tools array includes a hostedMcpTool that connects to the MCP server URL we created earlier.
  • The headers object includes the Composio API key for secure authentication with the MCP server.
  • requireApproval: 'never' means the agent can execute Turbot pipes operations without asking for permission each time, making interactions smoother.
9

Start chat loop and handle conversation

// Keep conversation state across turns
const conversationSession = new OpenAIConversationsSession();

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

console.log('\nComposio Tool Router session created.');
console.log('\nChat started. Type your requests below.');
console.log("Commands: 'exit', 'quit', or 'q' to end\n");

try {
  const first = await run(agent, 'What can you help me with?', { session: conversationSession });
  console.log(`Assistant: ${first.finalOutput}\n`);
} catch (e) {
  console.error('Error:', e instanceof Error ? e.message : e, '\n');
}

rl.prompt();

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

  if (['exit', 'quit', 'q'].includes(text.toLowerCase())) {
    console.log('Goodbye!');
    rl.close();
    process.exit(0);
  }

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

  try {
    const result = await run(agent, text, { session: conversationSession });
    console.log(`\nAssistant: ${result.finalOutput}\n`);
  } catch (e) {
    console.error('Error:', e instanceof Error ? e.message : e, '\n');
  }

  rl.prompt();
});

rl.on('close', () => {
  console.log('\n👋 Session ended.');
  process.exit(0);
});
What's happening:
  • The program prints a session URL that you visit to authorize Turbot pipes.
  • After authorization, the chat begins.
  • Each message you type is processed by the agent using run().
  • The responses are printed to the console.
  • Typing exit, quit, or q cleanly ends the chat.

Complete Code

Here's the complete code to get you started with Turbot pipes and OpenAI Agents SDK:

import 'dotenv/config';
import { Composio } from '@composio/core';
import { OpenAIAgentsProvider } from '@composio/openai-agents';
import { Agent, hostedMcpTool, run, OpenAIConversationsSession } from '@openai/agents';
import * as readline from 'readline';

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

if (!composioApiKey) {
  throw new Error('COMPOSIO_API_KEY is not set. Create a .env file with COMPOSIO_API_KEY=your_key');
}
if (!userId) {
  throw new Error('USER_ID is not set');
}

// Initialize Composio
const composio = new Composio({
  apiKey: composioApiKey,
  provider: new OpenAIAgentsProvider(),
});

async function main() {
  // Create Tool Router session
  const session = await composio.create(userId as string, {
    toolkits: ['turbot_pipes'],
  });
  const mcpUrl = session.mcp.url;

  // Configure agent with MCP tool
  const agent = new Agent({
    name: 'Assistant',
    model: 'gpt-5',
    instructions:
      'You are a helpful assistant that can access Turbot pipes. Help users perform Turbot pipes operations through natural language.',
    tools: [
      hostedMcpTool({
        serverLabel: 'tool_router',
        serverUrl: mcpUrl,
        headers: { 'x-api-key': composioApiKey },
        requireApproval: 'never',
      }),
    ],
  });

  // Keep conversation state across turns
  const conversationSession = new OpenAIConversationsSession();

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

  console.log('\nComposio Tool Router session created.');
  console.log('\nChat started. Type your requests below.');
  console.log("Commands: 'exit', 'quit', or 'q' to end\n");

  try {
    const first = await run(agent, 'What can you help me with?', { session: conversationSession });
    console.log(`Assistant: ${first.finalOutput}\n`);
  } catch (e) {
    console.error('Error:', e instanceof Error ? e.message : e, '\n');
  }

  rl.prompt();

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

    if (['exit', 'quit', 'q'].includes(text.toLowerCase())) {
      console.log('Goodbye!');
      rl.close();
      process.exit(0);
    }

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

    try {
      const result = await run(agent, text, { session: conversationSession });
      console.log(`\nAssistant: ${result.finalOutput}\n`);
    } catch (e) {
      console.error('Error:', e instanceof Error ? e.message : e, '\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

This was a starter code for integrating Turbot pipes MCP with OpenAI Agents SDK to build a functional AI agent that can interact with Turbot pipes.

Key features:

  • Hosted MCP tool integration through Composio's Tool Router
  • SQLite session persistence for conversation history
  • Simple async chat loop for interactive testing
You can extend this by adding more toolkits, implementing custom business logic, or building a web interface around the agent.
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. OpenAI Agents SDK 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