Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Enables Claude Desktop to automate OctoBrowser, managing profiles, tags, proxies, and cookies through a standardized protocol interface.

README.md

OctoBrowser MCP Server

English | Русский

---

English

Description

MCP (Model Context Protocol) server for OctoBrowser automation. This server enables Claude Desktop to interact with OctoBrowser, providing browser automation capabilities through a standardized protocol interface.

Features

  • Profile Management: Create, read, update, and delete browser profiles
  • Tag Management: Organize profiles with tags
  • Proxy Management: Configure and manage proxy settings
  • Cookie Import: Import cookies into profiles
  • Local Control: Start and stop profiles on local machine
  • Active Monitoring: Check currently running profiles

Installation

Manual Installation

  1. Clone the repository:
git clone https://github.com/momentum100/octobrowser-mcp-server.git
cd octobrowser-mcp-server
  1. Install dependencies:
npm install
  1. Build the project:
npm run build
  1. Configure Claude Desktop by adding the following to your Claude Desktop configuration file:

Windows: %APPDATA%\Claude\claude_desktop_config.json macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Linux: ~/.config/Claude/claude_desktop_config.json

{
    "mcpServers": {
        "mcp-octobrowser": {
            "command": "node",
            "args": [
                "C:\\mcp-servers\\mcp-octo-browser\\dist\\index.js"
            ],
            "env": {
                "OCTOBROWSER_API_TOKEN": "YOUR_API_KEY_HERE"
            }
        }
    }
}
  1. Replace YOUR_API_KEY_HERE with your actual OctoBrowser API token.
  1. Adjust the path in args to match your installation directory.
  1. Restart Claude Desktop to apply the configuration.

Requirements

  • Node.js 16 or higher
  • npm or yarn
  • OctoBrowser API token
  • Claude Desktop application

Configuration

The server requires the following environment variable:

  • OCTOBROWSER_API_TOKEN: Your OctoBrowser API authentication token

Optional environment variables:

  • OCTOBROWSER_API_URL: API base URL (default: https://app.octobrowser.net)
  • OCTOBROWSER_LOCAL_URL: Local client URL (default: http://localhost:58888)

Available Tools

Profile Management

  • octobrowser_get_profiles - Get list of profiles with optional filtering
  • octobrowser_get_profile - Get detailed profile information
  • octobrowser_create_profile - Create a new browser profile
  • octobrowser_update_profile - Update existing profile
  • octobrowser_delete_profiles - Delete one or more profiles
  • octobrowser_import_cookies - Import cookies into a profile

Tag Management

  • octobrowser_get_tags - Get all available tags
  • octobrowser_create_tag - Create a new tag
  • octobrowser_update_tag - Update tag name
  • octobrowser_delete_tag - Delete a tag

Proxy Management

  • octobrowser_get_proxies - Get all configured proxies
  • octobrowser_create_proxy - Add a new proxy configuration
  • octobrowser_update_proxy - Update proxy settings
  • octobrowser_delete_proxy - Remove a proxy

Local Profile Control

  • octobrowser_get_active_profiles - List currently running profiles
  • octobrowser_start_profile - Start a profile (GUI or headless)
  • octobrowser_stop_profile - Stop a running profile

API Token

To get your OctoBrowser API token:

  1. Log in to your OctoBrowser account
  2. Navigate to API settings
  3. Generate or copy your API token

---

Russian

Описание

MCP (Model Context Protocol) сервер для автоматизации OctoBrowser. Этот сервер позволяет Claude Desktop взаимодействовать с OctoBrowser, предоставляя возможности автоматизации браузера через стандартизированный интерфейс протокола.

Возможности

  • Управление профилями: Создание, чтение, обновление и удаление профилей браузера
  • Управление тегами: Организация профилей с помощью тегов
  • Управление прокси: Настройка и управление параметрами прокси
  • Импорт куки: Импорт куки в профили
  • Локальное управление: Запуск и остановка профилей на локальной машине
  • Активный мониторинг: Проверка запущенных профилей

Установка

Ручная установка

  1. Клонируйте репозиторий:
git clone https://github.com/momentum100/octobrowser-mcp-server.git
cd octobrowser-mcp-server
  1. Установите зависимости:
npm install
  1. Соберите проект:
npm run build
  1. Настройте Claude Desktop, добавив следующую конфигурацию в файл настроек Claude Desktop:

Windows: %APPDATA%\Claude\claude_desktop_config.json macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Linux: ~/.config/Claude/claude_desktop_config.json

{
    "mcpServers": {
        "mcp-octobrowser": {
            "command": "node",
            "args": [
                "C:\\mcp-servers\\mcp-octo-browser\\dist\\index.js"
            ],
            "env": {
                "OCTOBROWSER_API_TOKEN": "ВАШ_API_КЛЮЧ"
            }
        }
    }
}
  1. Замените ВАШ_API_КЛЮЧ на ваш актуальный токен API OctoBrowser.
  1. Измените путь в args в соответствии с вашей директорией установки.
  1. Перезапустите Claude Desktop для применения конфигурации.

Требования

  • Node.js версии 16 или выше
  • npm или yarn
  • Токен API OctoBrowser
  • Приложение Claude Desktop

Конфигурация

Сервер требует следующую переменную окружения:

  • OCTOBROWSER_API_TOKEN: Ваш токен аутентификации API OctoBrowser

Дополнительные переменные окружения:

  • OCTOBROWSER_API_URL: Базовый URL API (по умолчанию: https://app.octobrowser.net)
  • OCTOBROWSER_LOCAL_URL: URL локального клиента (по умолчанию: http://localhost:58888)

Доступные инструменты

Управление профилями

  • octobrowser_get_profiles - Получить список профилей с опциональной фильтрацией
  • octobrowser_get_profile - Получить детальную информацию о профиле
  • octobrowser_create_profile - Создать новый профиль браузера
  • octobrowser_update_profile - Обновить существующий профиль
  • octobrowser_delete_profiles - Удалить один или несколько профилей
  • octobrowser_import_cookies - Импортировать куки в профиль

Управление тегами

  • octobrowser_get_tags - Получить все доступные теги
  • octobrowser_create_tag - Создать новый тег
  • octobrowser_update_tag - Обновить название тега
  • octobrowser_delete_tag - Удалить тег

Управление прокси

  • octobrowser_get_proxies - Получить все настроенные прокси
  • octobrowser_create_proxy - Добавить новую конфигурацию прокси
  • octobrowser_update_proxy - Обновить настройки прокси
  • octobrowser_delete_proxy - Удалить прокси

Локальное управление профилями

  • octobrowser_get_active_profiles - Список запущенных профилей
  • octobrowser_start_profile - Запустить профиль (GUI или headless)
  • octobrowser_stop_profile - Остановить запущенный профиль

API токен

Чтобы получить токен API OctoBrowser:

  1. Войдите в свою учетную запись OctoBrowser
  2. Перейдите в настройки API
  3. Сгенерируйте или скопируйте ваш API токен

---

Development / Разработка

Project Structure / Структура проекта

mcp-octo-browser/
├── src/
│   └── index.ts        # Main server implementation
├── dist/               # Compiled JavaScript (generated)
├── package.json        # Node.js dependencies
├── tsconfig.json       # TypeScript configuration
└── README.md          # Documentation

Building / Сборка

npm run build

Development Mode / Режим разработки

npm run dev

License

MIT

Support

For issues and questions, please visit: https://github.com/momentum100/octobrowser-mcp-server/issues

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Browser & Scraping servers.