Browseai MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Browseai MCP or direct API to extract web data, automate site monitoring, trigger custom robots, and retrieve structured information from any website through natural language.

Browseai logoBrowseai
Api Key

Browseai is a web automation and data extraction platform that turns any website into an API. It's perfect for monitoring websites and retrieving structured data without manual scraping.

11 Tools

Try Browseai now

Type what you want done — sign in and watch it run live in the Tool Router playground.

TOOL ROUTER PLAYGROUND
Browseai
Try asking
TOOLS

Supported Tools

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

Bulk Run Tasks

This action allows users to bulk run up to 1,000 tasks per API call using a specified robot.

Create Monitor

Creates a new monitor for a Browse AI robot to automatically track website changes over time.

Create Webhook

This tool creates a new webhook for a Browse AI robot.

Delete a specific monitor

This tool allows users to delete a specific monitor from their Browse AI account.

Delete a specific task

This tool allows you to delete a specific task in BrowseAI by its task ID.

Get Robots List

Retrieves a list of all robots (automated web tasks) under your Browse AI account.

Get Robot Tasks

Retrieves a paginated list of all tasks (execution runs) for a specific Browse AI robot.

Get System Status

Tool to check the operational status of Browse AI infrastructure, including the tasks queue condition.

Get Task Details

Retrieves detailed information about a specific Browse AI task by robot ID and task ID.

List Robot Webhooks

Tool to retrieve all webhooks configured for a specific Browse AI robot.

Run Robot

Triggers the execution of a Browse.

SETUP GUIDE

Connect Browseai MCP Tool with your Agent

1

Install Composio

typescript
npm install @composio/core ai @ai-sdk/openai @ai-sdk/mcp
Install the Composio SDK and Claude Agent SDK
2

Create Tool Router Session

typescript
import { Composio } from '@composio/core';

const composio = new Composio({ apiKey: 'your-api-key' });

console.log("Creating Tool Router session...");
const { mcp } = await composio.create('your-user-id');
console.log(`Tool Router session created: ${mcp.url}`);
Initialize the Composio client and create a Tool Router session
3

Connect to AI Agent

typescript
import { openai } from '@ai-sdk/openai';
import { experimental_createMCPClient as createMCPClient } from '@ai-sdk/mcp';
import { generateText, stepCountIs } from 'ai';

const client = await createMCPClient({
  transport: {
    type: 'http',
    url: mcp.url,
    headers: { 'x-api-key': 'your-composio-api-key' }
  }
});

const tools = await client.tools();

const { text } = await generateText({
  model: openai('gpt-4o'),
  tools,
  messages: [{ role: 'user', content: 'Get Robots List and show their last run status' }],
  stopWhen: stepCountIs(5)
});

console.log(`Agent: ${text}`);
Use the MCP server with your AI agent
SETUP GUIDE

Connect Browseai API Tool with your Agent

1

Install Composio

typescript
npm install @composio/openai
Install the Composio SDK
2

Initialize Composio and Create Tool Router Session

typescript
import OpenAI from 'openai';
import { Composio } from '@composio/core';
import { OpenAIResponsesProvider } from '@composio/openai';

const composio = new Composio({
  provider: new OpenAIResponsesProvider(),
});
const openai = new OpenAI({});
const session = await composio.create('your-user-id');
Import and initialize Composio client, then create a Tool Router session
3

Execute Browseai Tools via Tool Router with Your Agent

typescript
const tools = session.tools;
const response = await openai.responses.create({
  model: 'gpt-4.1',
  tools: tools,
  input: [{
    role: 'user',
    content: 'Extract the latest product prices from the competitor website'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
Get tools from Tool Router session and execute Browseai actions with your Agent

Why Use Composio?

AI Native Browseai Integration

  • Supports both Browseai MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable tool execution
  • Rich coverage for reading, writing, and querying your Browseai data

Managed Auth

  • Built-in OAuth handling with automatic token refresh and rotation
  • Central place to manage, scope, and revoke Browseai access
  • Per user and per environment credentials instead of hard-coded keys

Agent Optimized Design

  • Tools are tuned using real error and success rates to improve reliability over time
  • Comprehensive execution logs so you always know what ran, when, and on whose behalf

Enterprise Grade Security

  • Fine-grained RBAC so you control which agents and users can access Browseai
  • Scoped, least privilege access to Browseai resources
  • Full audit trail of agent actions to support review and compliance
FAQ

Frequently asked questions

Yes, Browseai requires you to configure your own API key credentials. Once set up, Composio handles secure credential storage and API request handling for you.

Yes! Composio's Tool Router enables agents to use multiple toolkits. Learn more.

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. Learn more.

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

Start with Browseai.It takes 30 seconds.

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

Start building