How to integrate Borneo MCP with CrewAI

This guide walks you through connecting Borneo to CrewAI using the Composio tool router. By the end, you'll have a working Borneo agent that can start a new cloud resource scan for sensitive data, archive a discovered recipient for compliance reasons, create a new dashboard user with admin access through natural language commands. This guide will help you understand how to give your CrewAI agent real control over a Borneo account through Composio's Borneo MCP server. Before we dive in, let's take a quick look at the key ideas and tools involved.

Borneo logoBorneo
Api KeyOauth2

Borneo is a data security and privacy platform for sensitive data discovery and remediation. It helps organizations mitigate risk by identifying and protecting sensitive information across their infrastructure.

153 Tools

Introduction

This guide walks you through connecting Borneo to CrewAI using the Composio tool router. By the end, you'll have a working Borneo agent that can start a new cloud resource scan for sensitive data, archive a discovered recipient for compliance reasons, create a new dashboard user with admin access through natural language commands.

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

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

Also integrate Borneo with

TL;DR

Here's what you'll learn:
  • Get a Composio API key and configure your Borneo connection
  • Set up CrewAI with an MCP enabled agent
  • Create a Tool Router session or standalone MCP server for Borneo
  • Build a conversational loop where your agent can execute Borneo operations

What is CrewAI?

CrewAI is a powerful framework for building multi-agent AI systems. It provides primitives for defining agents with specific roles, creating tasks, and orchestrating workflows through crews.

Key features include:

  • Agent Roles: Define specialized agents with specific goals and backstories
  • Task Management: Create tasks with clear descriptions and expected outputs
  • Crew Orchestration: Combine agents and tasks into collaborative workflows
  • MCP Integration: Connect to external tools through Model Context Protocol

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

The Borneo MCP server is an implementation of the Model Context Protocol that connects your AI agent and assistants like Claude, Cursor, etc directly to your Borneo account. It provides structured and secure access to your organization's data security and privacy operations, so your agent can perform actions like scheduling cloud resource scans, managing data breaches, onboarding users, and automating privacy compliance workflows on your behalf.

  • Automated sensitive data discovery and scans: Instruct your agent to create and schedule scans across cloud resources for compliance, security audits, and regular data inspection.
  • Data breach evaluation and remediation: Have your agent delete outdated or irrelevant data breach records to maintain accurate compliance documentation and ensure up-to-date risk management.
  • User and employee onboarding automation: Let your agent create dashboard users with specific roles or onboard new employees, streamlining access management and HR integration tasks.
  • Department and domain management: Direct your agent to add new departments with multilingual support or set up domains for automated system integrations and workflow triggers.
  • Privacy assessment and compliance operations: Empower your agent to initiate or update Data Protection Impact Assessments (DPIAs) for processing activities, supporting structured risk evaluation and regulatory compliance.

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

Before starting, make sure you have:
  • Python 3.9 or higher
  • A Composio account and API key
  • A Borneo connection authorized in Composio
  • An OpenAI API key for the CrewAI LLM
  • Basic familiarity with Python
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 crewai crewai-tools[mcp] python-dotenv
What's happening:
  • composio connects your agent to Borneo via MCP
  • crewai provides Agent, Task, Crew, and LLM primitives
  • crewai-tools[mcp] includes MCP helpers
  • python-dotenv loads environment variables from .env
4

Set up environment variables

bash
COMPOSIO_API_KEY=your_composio_api_key_here
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 with Composio
  • USER_ID scopes the session to your account
  • OPENAI_API_KEY lets CrewAI use your chosen OpenAI model
5

Import dependencies

python
import os
from composio import Composio
from crewai import Agent, Task, Crew
from crewai_tools import MCPServerAdapter
import dotenv

dotenv.load_dotenv()

COMPOSIO_API_KEY = os.getenv("COMPOSIO_API_KEY")
COMPOSIO_USER_ID = os.getenv("COMPOSIO_USER_ID")

if not COMPOSIO_API_KEY:
    raise ValueError("COMPOSIO_API_KEY is not set")
if not COMPOSIO_USER_ID:
    raise ValueError("COMPOSIO_USER_ID is not set")
What's happening:
  • CrewAI classes define agents and tasks, and run the workflow
  • MCPServerHTTP connects the agent to an MCP endpoint
  • Composio will give you a short lived Borneo MCP URL
6

Create a Composio Tool Router session for Borneo

python
composio_client = Composio(api_key=COMPOSIO_API_KEY)
session = composio_client.create(user_id=COMPOSIO_USER_ID, toolkits=["borneo"])

url = session.mcp.url
What's happening:
  • You create a Borneo only session through Composio
  • Composio returns an MCP HTTP URL that exposes Borneo tools
7

Initialize the MCP Server

python
server_params = {
    "url": url,
    "transport": "streamable-http",
    "headers": {"x-api-key": COMPOSIO_API_KEY},
}

with MCPServerAdapter(server_params) as tools:
    agent = Agent(
        role="Search Assistant",
        goal="Help users search the internet effectively",
        backstory="You are a helpful assistant with access to search tools.",
        tools=tools,
        verbose=False,
        max_iter=10,
    )
What's Happening:
  • Server Configuration: The code sets up connection parameters including the MCP server URL, streamable HTTP transport, and Composio API key authentication.
  • MCP Adapter Bridge: MCPServerAdapter acts as a context manager that converts Composio MCP tools into a CrewAI-compatible format.
  • Agent Setup: Creates a CrewAI Agent with a defined role (Search Assistant), goal (help with internet searches), and access to the MCP tools.
  • Configuration Options: The agent includes settings like verbose=False for clean output and max_iter=10 to prevent infinite loops.
  • Dynamic Tool Usage: Once created, the agent automatically accesses all Composio Search tools and decides when to use them based on user queries.
8

Create a CLI Chatloop and define the Crew

python
print("Chat started! Type 'exit' or 'quit' to end.\n")

conversation_context = ""

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

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

    if not user_input:
        continue

    conversation_context += f"\nUser: {user_input}\n"
    print("\nAgent is thinking...\n")

    task = Task(
        description=(
            f"Conversation history:\n{conversation_context}\n\n"
            f"Current request: {user_input}"
        ),
        expected_output="A helpful response addressing the user's request",
        agent=agent,
    )

    crew = Crew(agents=[agent], tasks=[task], verbose=False)
    result = crew.kickoff()
    response = str(result)

    conversation_context += f"Agent: {response}\n"
    print(f"Agent: {response}\n")
What's Happening:
  • Interactive CLI Setup: The code creates an infinite loop that continuously prompts for user input and maintains the entire conversation history in a string variable.
  • Input Validation: Empty inputs are ignored to prevent processing blank messages and keep the conversation clean.
  • Context Building: Each user message is appended to the conversation context, which preserves the full dialogue history for better agent responses.
  • Dynamic Task Creation: For every user input, a new Task is created that includes both the full conversation history and the current request as context.
  • Crew Execution: A Crew is instantiated with the agent and task, then kicked off to process the request and generate a response.
  • Response Management: The agent's response is converted to a string, added to the conversation context, and displayed to the user, maintaining conversational continuity.

Complete Code

Here's the complete code to get you started with Borneo and CrewAI:

python
from crewai import Agent, Task, Crew, LLM
from crewai_tools import MCPServerAdapter
from composio import Composio
from dotenv import load_dotenv
import os

load_dotenv()

GOOGLE_API_KEY = os.getenv("GOOGLE_API_KEY")
COMPOSIO_API_KEY = os.getenv("COMPOSIO_API_KEY")
COMPOSIO_USER_ID = os.getenv("COMPOSIO_USER_ID")

if not GOOGLE_API_KEY:
    raise ValueError("GOOGLE_API_KEY is not set in the environment.")
if not COMPOSIO_API_KEY:
    raise ValueError("COMPOSIO_API_KEY is not set in the environment.")
if not COMPOSIO_USER_ID:
    raise ValueError("COMPOSIO_USER_ID is not set in the environment.")

# Initialize Composio and create a session
composio = Composio(api_key=COMPOSIO_API_KEY)
session = composio.create(
    user_id=COMPOSIO_USER_ID,
    toolkits=["borneo"],
)
url = session.mcp.url

# Configure LLM
llm = LLM(
    model="gpt-5",
    api_key=os.getenv("OPENAI_API_KEY"),
)

server_params = {
    "url": url,
    "transport": "streamable-http",
    "headers": {"x-api-key": COMPOSIO_API_KEY},
}

with MCPServerAdapter(server_params) as tools:
    agent = Agent(
        role="Search Assistant",
        goal="Help users with internet searches",
        backstory="You are an expert assistant with access to Composio Search tools.",
        tools=tools,
        llm=llm,
        verbose=False,
        max_iter=10,
    )

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

    conversation_context = ""

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

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

        if not user_input:
            continue

        conversation_context += f"\nUser: {user_input}\n"
        print("\nAgent is thinking...\n")

        task = Task(
            description=(
                f"Conversation history:\n{conversation_context}\n\n"
                f"Current request: {user_input}"
            ),
            expected_output="A helpful response addressing the user's request",
            agent=agent,
        )

        crew = Crew(agents=[agent], tasks=[task], verbose=False)
        result = crew.kickoff()
        response = str(result)

        conversation_context += f"Agent: {response}\n"
        print(f"Agent: {response}\n")

Conclusion

You now have a CrewAI agent connected to Borneo through Composio's Tool Router. The agent can perform Borneo operations through natural language commands.

Next steps:

  • Add role-specific instructions to customize agent behavior
  • Plug in more toolkits for multi-app workflows
  • Chain tasks for complex multi-step operations
TOOLS

Supported Tools

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

Access scan iteration by id

Retrieves detailed information about a specific scan iteration in the Borneo integration platform.

Add discovered recipients

Adds multiple discovered recipients to the system as confirmed recipients.

Archive discovered recipient

Archives a specific discovered recipient in the Borneo platform.

Create and schedule cloud resource scan

The createScan endpoint initiates a new scan operation in the Borneo integration platform, allowing users to configure and schedule data scans across various cloud resources.

Create dashboard user

Creates a new dashboard user in the Borneo integration platform with specified roles, organizational access, and authentication settings.

Create department with translations

Creates a new department in the Borneo integration platform.

Create domain with polling frequency

Creates a new domain within the Borneo integration platform, allowing for automatic polling and management of connected systems or applications.

Create dpia for processing activity

Creates a new Data Protection Impact Assessment (DPIA) for a specific processing activity in the Borneo application.

Create employee with json payload

Creates a new employee record in the Borneo integration platform.

Create headquarter entry

Creates a new headquarters entry in the Borneo integration platform.

Create legal document entry

Creates or uploads a new legal document in the Borneo integration platform with specified metadata.

Create new asset

Creates a new asset in the Borneo integration platform.

Create new infotype category

Creates a new infotype category in the Borneo integration platform, allowing users to organize and group related sensitive data types.

Create processing activity

Creates a new processing activity in the Borneo integration platform.

Create processing activity threshold

Creates a new threshold for a specific data processing activity in the context of LOPDP (Law on Personal Data Protection) compliance.

Create recipient with details

Creates a new recipient in the Borneo integration platform.

Create threshold for processing activity

Creates a new threshold for a specific data processing activity in the Borneo integration platform.

Delete asset by id

The DeleteAsset endpoint removes a specific asset from the Borneo integration platform.

Delete category by label

Deletes a specific category from the Borneo integration platform using its unique label.

Delete dashboard report by id

Deletes a specific dashboard report from the Borneo integration platform.

Delete data breach by id

Deletes a specific data breach evaluation record from the Borneo system.

Delete department by id

Deletes a specific department from the Borneo platform using its unique identifier.

Delete domain by id

Deletes a specific domain from the Borneo integration platform.

Delete dpia by id

Deletes a specific Data Protection Impact Assessment (DPIA) from the Borneo system.

Delete employee by id

Deletes an employee record from the Borneo system using the specified employee ID.

Delete headquarters by id

Deletes a specific headquarters record from the Borneo system.

Delete legal document by id

Deletes a specific legal document from the Borneo platform using its unique identifier.

Delete lopdp threshold by id

This endpoint deletes a specific LopdP (Local Public Data Protection) threshold from the Borneo integration platform.

Delete processing activity by id

Deletes a specific processing activity from the Borneo integration platform.

Delete recipient by id

Deletes a specific recipient from the Borneo integration platform.

Delete tag from resource

The DeleteTags endpoint removes specified tags from resources in the Borneo integration platform.

Delete threshold by id

Deletes a specific threshold from the Borneo integration platform.

Disable dashboard user by username

Disables a specified user account in the Borneo dashboard, preventing further access to the system.

Download dashboard report

The DownloadDashboardReport endpoint allows users to download specific types of dashboard reports from the Borneo integration platform.

Download dashboard report edition

Downloads a specific dashboard report edition from the Borneo integration platform.

Enable dashboard user

Enables dashboard access for a specified user in the Borneo integration platform.

Evaluate data breach impact

This endpoint allows users to evaluate and document details of a data breach incident.

Export filtered leaf resources

The listLeafResources endpoint exports a comprehensive list of leaf resources in the Borneo integration platform, allowing for extensive filtering, sorting, and detailed information retrieval.

Export insight page using scanid

The ExportPageInsight endpoint allows users to export filtered inspection results from a specific scan in the Borneo integration platform.

Export inventory resource list

Exports a filtered and sorted list of inventory resources from the Borneo integration platform.

Export processing activities list

This endpoint exports a filtered list of processing activities in specified formats and languages.

Export recipients list with filter

The ExportRecipientsList endpoint generates and exports a list of recipients based on specified criteria.

Fetch dashboard report by id

Retrieves a specific dashboard report from the Borneo integration platform.

Fetch data breach evaluation

Retrieves detailed information about a specific evaluated data breach incident.

Filter and list inspection results

The InsightListPost endpoint retrieves a list of inspection results from the Borneo integration platform.

Filter and sort assets list

The ListAssets endpoint retrieves a customized list of assets from Borneo.

Filter employee list

The FilterEmployeeList endpoint allows you to retrieve a filtered list of employees based on specified criteria.

Filter recipients list

The FilterRecipientsList endpoint allows users to retrieve a filtered list of recipients based on specified criteria.

Get category by label

Retrieves detailed information about a specific category within Borneo's data classification system using the category's unique label.

Get cloud account by id

Retrieves detailed information about a specific cloud account within the Borneo integration platform.

Get dashboard report edition by id

Retrieves a specific edition of a dashboard report from the Borneo integration platform.

Get department filter list

The FilterDepartmentList endpoint allows users to retrieve a filtered list of departments from the Borneo integration platform.

Get domain by id

Retrieves detailed information about a specific domain within the Borneo integration platform.

Get headquarters by id

Retrieves detailed information about a specific headquarters registered in the Borneo system.

Get insight by type and id

Retrieves a specific insight from the Borneo platform based on its type and unique identifier.

Get resource inventory by id

Retrieves detailed inventory information for a specific resource identified by its unique resourceId.

Get scan by scanid

Retrieves detailed information about a specific data scan performed by Borneo's data risk remediation platform.

Get threshold by id

Retrieves detailed information about a specific threshold setting in the Borneo integration platform.

Get user profile by id

Retrieves the user profile information for a specific user in the Borneo integration platform.

List dashboard report editions

Lists the editions of a specific dashboard report in the Borneo integration platform.

List dashboard reports with filters

Retrieves a list of dashboard reports from the Borneo integration platform, allowing for filtered, paginated, and sorted results.

List dashboard users with filters

Lists and filters dashboard users in the Borneo integration platform based on specified criteria.

List data breaches with filters

The ListDataBreaches endpoint retrieves a list of data breaches based on specified filter conditions, allowing for detailed searching and sorting of breach information.

List data breach filters

Retrieves a list of available filter options for data breaches in the Borneo platform.

List departments with sort and pagination

The ListDepartments endpoint retrieves a list of departments within the Borneo integration platform.

List discovered document

Retrieves a list of discovered documents in the Borneo integration platform, allowing for flexible querying, filtering, and sorting of results.

List discovered infotypes

The ListDiscoveredInfoTypes endpoint retrieves discovered info types from Borneo, supporting flexible querying, filtering, sorting, and pagination.

List discovered recipients

Lists and retrieves discovered recipients in the Borneo integration platform.

List domains with pagination and sorting

Retrieves a list of domains in the Borneo integration platform with support for pagination and custom sorting.

List employees with filters

Retrieves a list of employees based on specified filtering and sorting criteria.

List error details from filtered scan iterations

The ErrorList endpoint retrieves errors related to scan iterations in Borneo.

List events with filters

Lists and retrieves events based on specified criteria, with options for filtering, sorting, and pagination.

List filtered sorted categories

The ListCategories endpoint allows users to retrieve a list of categories from the Borneo integration platform.

List filter options for recipients

Lists the available filters for recipients in the Borneo integration platform based on the specified filter type.

List headquarters with sorting

The headquarters_list endpoint retrieves a paginated list of headquarters records from Borneo.

List insight filters

The list-filters endpoint retrieves a list of available filters for data insights, specifically focused on file extension filters.

List inventory resources with filters

Retrieves a comprehensive list of resources from Borneo's inventory.

List issues with filters

The ListIssues endpoint allows users to retrieve a filtered and sorted list of issues from the Borneo integration platform.

List leaf resources with filters

The listLeafResources endpoint retrieves and filters leaf resources from Borneo's catalog.

List legal documents with pagination

Retrieves a paginated and sortable list of legal documents based on specified filter criteria.

List or filter recipients

The ListRecipients endpoint retrieves a paginated and filtered list of recipients from the Borneo application.

List processing activities

ListProcessingActivities retrieves a list of processing activities with extensive filtering, sorting, and pagination.

List processing activities filters

This endpoint retrieves a list of available filters for processing activities in the PoPS (Processing of Personal Data) Dashboard.

List scan execution results

The ListScanExecutions endpoint retrieves and filters inspection results from scan executions in the Borneo integration platform.

List scan iterations with filter

The ListScanIterations endpoint allows users to retrieve a paginated list of scan iterations with customizable filtering, sorting, and field selection options.

List scans with filters

The list_scans endpoint retrieves a filtered and sorted list of scans from the Borneo integration platform.

List toms with filter and pagination options

The ListToms endpoint retrieves a filtered, sorted, and paginated list of toms from the Borneo integration platform.

List user profile with filters and sorting

The ListUserProfiles endpoint retrieves a paginated and filterable list of user profiles from Borneo.

Mark scan false positives by id

Marks specified reports as false positives within a given scan in the Borneo platform.

Pause scan by id

The PauseScan endpoint allows users to temporarily halt an ongoing scan process in the Borneo integration platform.

Poll domain by id

This endpoint allows you to initiate a poll operation or submit data for a specific domain within the Borneo integration platform.

Post accounts with filter and sort options

The ListAccounts endpoint retrieves a filtered and sorted list of accounts from the Borneo platform.

Post classification stats

Retrieves statistical information about resource classifications based on the specified filter criteria.

Post connector with filtering options

Retrieves a filtered and sorted list of connectors from the Borneo integration platform.

Post current dashboard user

Retrieves or updates information about the currently authenticated user in the Borneo dashboard.

Post dashboard report

Creates or schedules a dashboard report in the Borneo integration platform for privacy operations and data discovery.

Post data breach information

Creates a new data breach report in the Borneo platform.

Post discovered recipient by id

Updates or processes information for a specific discovered recipient user in the Borneo integration platform.

Post filtered access logs

The ListAccessLogs endpoint retrieves and filters access logs from the Borneo integration platform.

Post log audit records with filter criteria

The RetrieveAuditLogs endpoint fetches filtered audit logs from Borneo.

Post resource lineage filter

Retrieves the lineage information for a specified resource within the Borneo integration platform.

Post resource stats with deleted resources

Retrieves statistics about resources within the Borneo integration platform.

Post scan resource status

Retrieves and filters the resource status for a specific scan iteration in the Borneo integration platform.

Post support chat query

The POST /support/chat endpoint handles chat support interactions in Borneo.

Put tom status and note

Updates a specific Technical Operating Model (TOM) in the Borneo integration platform.

Remove dashboard user by username

Removes a specified user from the dashboard in the Borneo integration platform.

Reset dashboard user password

Initiates a password reset process for a specified dashboard user in the Borneo platform.

Resume scan by id

The ResumeDataScan endpoint allows users to resume a previously paused or interrupted data scan operation within the Borneo integration platform.

Retrieve account details by id

Retrieves detailed information for a specific account within the Borneo integration platform.

Retrieve asset by id

Retrieves detailed information about a specific asset within the Borneo integration platform.

Retrieve connector by id

Retrieves detailed information about a specific connector in the Borneo integration platform.

Retrieve data breach by id

Retrieves detailed information about a specific data breach incident using its unique identifier.

Retrieve data resource statistics

Retrieves comprehensive statistical information about data resources across the Borneo integration platform.

Retrieve department information

Retrieves detailed information about a specific department within the Borneo integration platform.

Retrieve discovered document by id

Retrieves detailed information about a specific discovered document within the Borneo system.

Retrieve discovered infotype by id

Retrieves detailed information about a specific discovered infotype from the Borneo platform.

Retrieve discovered recipient by id

Retrieves detailed information about a specific discovered recipient using their unique identifier.

Retrieve dpia by id

Retrieves a specific Data Protection Impact Assessment (DPIA) using its unique identifier.

Retrieve employee details by id

Retrieves detailed information for a specific employee within the Borneo integration platform.

Retrieve error details by id

The GetErrorDetails endpoint retrieves detailed information about a specific error in the Borneo integration platform using its unique identifier.

Retrieve issue by id

Retrieves detailed information about a specific issue in the Borneo system.

Retrieve legal document by id

Retrieves a specific legal document from the Borneo system using its unique identifier.

Retrieve lopdp threshold by id

Retrieves detailed information about a specific LOPDP (Logical Object Data Point) threshold configuration within the Borneo integration platform.

Retrieve processing activity by id

Retrieves detailed information about a specific processing activity within the Borneo platform.

Retrieve recipient details

Retrieves detailed information about a specific recipient identified by their unique recipientId within the Borneo integration platform.

Retrieve recipient processing activities

Retrieves a paginated list of processing activities associated with a specific recipient in the Borneo integration platform.

Retrieve resource catalog by id

Retrieves detailed information about a specific resource from the Borneo catalog using its unique identifier.

Retrieve resource columns

Retrieves column information for resources in the Borneo integration platform.

Retrieve tom by id

Retrieves detailed information about a specific Tom resource using its unique identifier.

Scan legal document byid

Initiates a scanning process for a specified legal document within the Borneo integration platform.

Stop scan via scanid

Stops an ongoing scan operation in the Borneo integration platform.

Submit chat feedback

The SubmitChatFeedback endpoint allows users to provide feedback on a chat support interaction within the Borneo integration platform.

Submit detailed scan results

Retrieves detailed insights for a specific scan iteration of a particular resource in the Borneo integration platform.

Trigger dashboard report by report id

Triggers the generation or retrieval of a specific dashboard report in the Borneo integration platform.

Update asset information by id

The UpdateAsset endpoint allows you to modify the details of an existing asset in the Borneo integration platform.

Update category infotypes

Updates the infotypes associated with a specific category in the Borneo integration platform.

Update dashboard report frequency and recipients

Updates the settings of an existing dashboard report in the Borneo integration platform.

Update dashboard user details

Updates the information of an existing dashboard user in the Borneo integration platform.

Update dashboard user roles

Updates the roles and department associations for a specified user across multiple organizations in the Borneo dashboard.

Update data breach entry

The UpdateDataBreach endpoint allows users to create or update detailed information about a specific data breach incident in the Borneo integration platform.

Update department name

This endpoint updates the information of an existing department within the Borneo integration platform.

Update discovered document status

This endpoint updates the status of a specific discovered document in the Borneo integration platform.

Update discovered infotype status

Updates the status of a specific discovered infotype in the Borneo integration platform.

Update domain details

Updates the properties of an existing domain within the Borneo integration platform.

Update dpia by id

Updates an existing Data Protection Impact Assessment (DPIA) in the Borneo system.

Update employee by id

Updates the information of an existing employee in the Borneo integration platform.

Update headquarter details by id

Updates the information for an existing headquarter in the Borneo integration platform.

Update lopdp threshold by id

Updates the LOPDP (Likely Operational Privacy Data Protection) threshold settings for a specific threshold identified by the lopdpThresholdId.

Update processing activity details

This endpoint updates an existing processing activity in a data privacy management system.

Update recipient details by id

Updates the information of an existing recipient in the Borneo integration platform.

Update recipient status via id

Updates the status and automation status of a specific recipient in the Borneo integration platform.

Update threshold by id

Updates an existing threshold in the Borneo integration platform with new settings and information related to data processing and compliance.

Verify email with id and token

Completes the email verification process for a user account in the Borneo integration platform.

FAQ

Frequently asked questions

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

Yes, you can. CrewAI 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 Borneo tools.

Yes, absolutely. You can configure which Borneo 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 Borneo data and credentials are handled as safely as possible.

Start with Borneo.It takes 30 seconds.

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

Start building