desktop
by agentify-sh·★ 391·Score 50
MCP server for controlling web AI sessions (ChatGPT, Claude, etc.) via parallel tabs and automation.
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:
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 READMEagentify_querySend a prompt to a stable tab and return the assistant response.
agentify_read_pageRead visible page text from a tab.
agentify_navigateNavigate a tab to a URL.
agentify_ensure_readyWait for login, CAPTCHA, or UI readiness.
agentify_showBring browser windows forward.
agentify_hideMinimize browser windows.
agentify_statusInspect tab and readiness state.
agentify_tab_createCreate a new browser tab.
agentify_save_artifactsSave generated files/images locally.
agentify_save_bundleSave context bundles for reuse.
agentify_add_watch_folderAdd a watched folder for context.
agentify_querySend a prompt with local file context.
Comparable tools
Installation
Installation
Start with npx (recommended):
npx @agentify/desktopGlobal install:
npm install -g @agentify/desktop
agentify-desktopRun as MCP server:
npx @agentify/desktop mcpFor 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
Last updated · Auto-generated from public README + GitHub signals.