How to integrate Turbot pipes MCP with Mastra AI

This guide walks you through connecting Turbot pipes to Mastra AI 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 Mastra AI 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 Mastra AI 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 Mastra AI 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:
  • Set up your environment so Mastra, OpenAI, and Composio work together
  • Create a Tool Router session in Composio that exposes Turbot pipes tools
  • Connect Mastra's MCP client to the Composio generated MCP URL
  • Fetch Turbot pipes tool definitions and attach them as a toolset
  • Build a Mastra agent that can reason, call tools, and return structured results
  • Run an interactive CLI where you can chat with your Turbot pipes agent

What is Mastra AI?

Mastra AI is a TypeScript framework for building AI agents with tool support. It provides a clean API for creating agents that can use external services through MCP.

Key features include:

  • MCP Client: Built-in support for Model Context Protocol servers
  • Toolsets: Organize tools into logical groups
  • Step Callbacks: Monitor and debug agent execution
  • OpenAI Integration: Works with OpenAI models via @ai-sdk/openai

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:
  • Node.js 18 or higher
  • A Composio account with an active API key
  • An OpenAI API key
  • Basic familiarity with TypeScript
2

Getting API Keys for OpenAI and Composio

OpenAI API Key
  • Go to the OpenAI dashboard and create an API key.
  • You need credits or a connected billing setup to use the models.
  • Store the key somewhere safe.
Composio API Key
  • Log in to the Composio dashboard.
  • Go to Settings and copy your API key.
  • This key lets your Mastra agent talk to Composio and reach Turbot pipes through MCP.
3

Install dependencies

bash
npm install @composio/core @mastra/core @mastra/mcp @ai-sdk/openai dotenv

Install the required packages.

What's happening:

  • @composio/core is the Composio SDK for creating MCP sessions
  • @mastra/core provides the Agent class
  • @mastra/mcp is Mastra's MCP client
  • @ai-sdk/openai is the model wrapper for OpenAI
  • dotenv loads environment variables from .env
4

Set up environment variables

bash
COMPOSIO_API_KEY=your_composio_api_key_here
COMPOSIO_USER_ID=your_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
  • COMPOSIO_USER_ID tells Composio which user this session belongs to
  • OPENAI_API_KEY lets the Mastra agent call OpenAI models
5

Import libraries and validate environment

typescript
import "dotenv/config";
import { openai } from "@ai-sdk/openai";
import { Agent } from "@mastra/core/agent";
import { MCPClient } from "@mastra/mcp";
import { Composio } from "@composio/core";
import * as readline from "readline";

import type { AiMessageType } from "@mastra/core/agent";

const openaiAPIKey = process.env.OPENAI_API_KEY;
const composioAPIKey = process.env.COMPOSIO_API_KEY;
const composioUserID = process.env.COMPOSIO_USER_ID;

if (!openaiAPIKey) throw new Error("OPENAI_API_KEY is not set");
if (!composioAPIKey) throw new Error("COMPOSIO_API_KEY is not set");
if (!composioUserID) throw new Error("COMPOSIO_USER_ID is not set");

const composio = new Composio({
  apiKey: composioAPIKey as string,
});
What's happening:
  • dotenv/config auto loads your .env so process.env.* is available
  • openai gives you a Mastra compatible model wrapper
  • Agent is the Mastra agent that will call tools and produce answers
  • MCPClient connects Mastra to your Composio MCP server
  • Composio is used to create a Tool Router session
6

Create a Tool Router session for Turbot pipes

typescript
async function main() {
  const session = await composio.create(
    composioUserID as string,
    {
      toolkits: ["turbot_pipes"],
    },
  );

  const composioMCPUrl = session.mcp.url;
  console.log("Turbot pipes MCP URL:", composioMCPUrl);
What's happening:
  • create spins up a short-lived MCP HTTP endpoint for this user
  • The toolkits array contains "turbot_pipes" for Turbot pipes access
  • session.mcp.url is the MCP URL that Mastra's MCPClient will connect to
7

Configure Mastra MCP client and fetch tools

typescript
const mcpClient = new MCPClient({
    id: composioUserID as string,
    servers: {
      nasdaq: {
        url: new URL(composioMCPUrl),
        requestInit: {
          headers: session.mcp.headers,
        },
      },
    },
    timeout: 30_000,
  });

console.log("Fetching MCP tools from Composio...");
const composioTools = await mcpClient.getTools();
console.log("Number of tools:", Object.keys(composioTools).length);
What's happening:
  • MCPClient takes an id for this client and a list of MCP servers
  • The headers property includes the x-api-key for authentication
  • getTools fetches the tool definitions exposed by the Turbot pipes toolkit
8

Create the Mastra agent

typescript
const agent = new Agent({
    name: "turbot_pipes-mastra-agent",
    instructions: "You are an AI agent with Turbot pipes tools via Composio.",
    model: "openai/gpt-5",
  });
What's happening:
  • Agent is the core Mastra agent
  • name is just an identifier for logging and debugging
  • instructions guide the agent to use tools instead of only answering in natural language
  • model uses openai("gpt-5") to configure the underlying LLM
9

Set up interactive chat interface

typescript
let messages: AiMessageType[] = [];

console.log("Chat started! Type 'exit' or 'quit' to end.\n");

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

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;
  }

  messages.push({
    id: crypto.randomUUID(),
    role: "user",
    content: trimmedInput,
  });

  console.log("\nAgent is thinking...\n");

  try {
    const response = await agent.generate(messages, {
      toolsets: {
        turbot_pipes: composioTools,
      },
      maxSteps: 8,
    });

    const { text } = response;

    if (text && text.trim().length > 0) {
      console.log(`Agent: ${text}\n`);
        messages.push({
          id: crypto.randomUUID(),
          role: "assistant",
          content: text,
        });
      }
    } catch (error) {
      console.error("\nError:", error);
    }

    rl.prompt();
  });

  rl.on("close", async () => {
    console.log("\nSession ended.");
    await mcpClient.disconnect();
    process.exit(0);
  });
}

main().catch((err) => {
  console.error("Fatal error:", err);
  process.exit(1);
});
What's happening:
  • messages keeps the full conversation history in Mastra's expected format
  • agent.generate runs the agent with conversation history and Turbot pipes toolsets
  • maxSteps limits how many tool calls the agent can take in a single run
  • onStepFinish is a hook that prints intermediate steps for debugging

Complete Code

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

typescript
import "dotenv/config";
import { openai } from "@ai-sdk/openai";
import { Agent } from "@mastra/core/agent";
import { MCPClient } from "@mastra/mcp";
import { Composio } from "@composio/core";
import * as readline from "readline";

import type { AiMessageType } from "@mastra/core/agent";

const openaiAPIKey = process.env.OPENAI_API_KEY;
const composioAPIKey = process.env.COMPOSIO_API_KEY;
const composioUserID = process.env.COMPOSIO_USER_ID;

if (!openaiAPIKey) throw new Error("OPENAI_API_KEY is not set");
if (!composioAPIKey) throw new Error("COMPOSIO_API_KEY is not set");
if (!composioUserID) throw new Error("COMPOSIO_USER_ID is not set");

const composio = new Composio({ apiKey: composioAPIKey as string });

async function main() {
  const session = await composio.create(composioUserID as string, {
    toolkits: ["turbot_pipes"],
  });

  const composioMCPUrl = session.mcp.url;

  const mcpClient = new MCPClient({
    id: composioUserID as string,
    servers: {
      turbot_pipes: {
        url: new URL(composioMCPUrl),
        requestInit: {
          headers: session.mcp.headers,
        },
      },
    },
    timeout: 30_000,
  });

  const composioTools = await mcpClient.getTools();

  const agent = new Agent({
    name: "turbot_pipes-mastra-agent",
    instructions: "You are an AI agent with Turbot pipes tools via Composio.",
    model: "openai/gpt-5",
  });

  let messages: AiMessageType[] = [];

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

  rl.prompt();

  rl.on("line", async (input: string) => {
    const trimmed = input.trim();
    if (["exit", "quit"].includes(trimmed.toLowerCase())) {
      rl.close();
      return;
    }

    messages.push({ id: crypto.randomUUID(), role: "user", content: trimmed });

    const { text } = await agent.generate(messages, {
      toolsets: { turbot_pipes: composioTools },
      maxSteps: 8,
    });

    if (text) {
      console.log(`Agent: ${text}\n`);
      messages.push({ id: crypto.randomUUID(), role: "assistant", content: text });
    }

    rl.prompt();
  });

  rl.on("close", async () => {
    await mcpClient.disconnect();
    process.exit(0);
  });
}

main();

Conclusion

You've built a Mastra AI agent that can interact with Turbot pipes through Composio's Tool Router. You can extend this further by:
  • Adding other toolkits like Gmail, Slack, or GitHub
  • Building a web-based chat interface around this agent
  • Using multiple MCP endpoints to enable cross-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. Mastra AI 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