MCP Catalogs
Home

desktop

by agentify-sh·391·Score 50

MCP server for controlling web AI sessions (ChatGPT, Claude, etc.) via parallel tabs and automation.

browser-automationai-llmdeveloper-tools
32
Forks
0
Open issues
this month
Last commit
2d ago
Indexed

Overview

Agentify Desktop is a local control center for AI web sessions that allows MCP-capable tools to leverage your existing subscriptions to AI services. It manages signed-in browser sessions across multiple platforms, provides MCP tools for querying pages, navigating, uploading files, and saving artifacts. The solution supports parallel tabs so different agents can use separate sessions, and packs local repo context into prompts when requested.

Try asking AI

After installing, here are 5 things you can ask your AI assistant:

you:Automate interactions with ChatGPT, Claude, or other AI services using MCP-compatible tools
you:Maintain stable AI sessions across multiple queries while keeping browser state intact
you:Generate and save artifacts/images from AI services for reuse in subsequent prompts
you:What browser backends are supported?
you:How does it handle CAPTCHAs and login?

When to choose this

Choose this when you need multiple AI tools to control your existing web service subscriptions without separate accounts, especially when working with context-heavy tasks requiring file uploads or artifact downloads.

When NOT to choose this

Avoid if you need read/write access to AI service APIs directly, or if you prefer a cloud-based solution rather than local browser automation.

Tools this server exposes

12 tools extracted from the README
  • agentify_query

    Send a prompt to a stable tab and return the assistant response.

  • agentify_read_page

    Read visible page text from a tab.

  • agentify_navigate

    Navigate a tab to a URL.

  • agentify_ensure_ready

    Wait for login, CAPTCHA, or UI readiness.

  • agentify_show

    Bring browser windows forward.

  • agentify_hide

    Minimize browser windows.

  • agentify_status

    Inspect tab and readiness state.

  • agentify_tab_create

    Create a new browser tab.

  • agentify_save_artifacts

    Save generated files/images locally.

  • agentify_save_bundle

    Save context bundles for reuse.

  • agentify_add_watch_folder

    Add a watched folder for context.

  • agentify_query

    Send a prompt with local file context.

Comparable tools

browserlesspuppeteerplaywrightselenium-webdriver

Installation

Installation

Start with npx (recommended):

npx @agentify/desktop

Global install:

npm install -g @agentify/desktop
agentify-desktop

Run as MCP server:

npx @agentify/desktop mcp

For Claude Desktop, add to config:

{
  "mcpServers": {
    "agentify-desktop": {
      "command": "npx",
      "args": ["-y", "@agentify/desktop", "mcp"]
    }
  }
}

FAQ

What browser backends are supported?
Agentify Desktop supports two backends: 'chrome-cdp' (default, using Chrome DevTools Protocol) and 'electron' (embedded windows). Chrome CDP is recommended as SSO providers often block embedded Electron login.
How does it handle CAPTCHAs and login?
Agentify Desktop does not bypass CAPTCHAs or use third-party solvers. When a verification or login challenge appears, automation pauses, brings the window forward, and waits for manual completion.

Compare desktop with

GitHub →

Last updated · Auto-generated from public README + GitHub signals.