drio
Open app

AI Chat Desktop Applications

Source

Electron-based desktop applications for various AI chat platforms.

Catalog onlyCatalog onlySTDIO

Overview

AI Chat Desktop Applications is a collection of Electron-based desktop applications designed to provide a native experience for various AI chat platforms, including ChatGPT, DeepSeek, Claude, and Grok.

To use these applications, clone the repository, navigate to the desired application folder, install dependencies using npm, and run the application using npm start. Each application has its own specific build instructions.

  • Native desktop integration for web-based AI chat services - System tray integration for easy access - Hardware acceleration for improved performance - Voice input support for enhanced interaction - Cross-platform compatibility with a focus on Linux
  1. Accessing ChatGPT for instant responses in a desktop environment.
  2. Utilizing Claude AI for advanced conversational capabilities.
  3. Engaging with DeepSeek for specialized chat functionalities.
  4. Using Grok for unique AI interactions.

Add to your AI client

Use these steps to connect AI Chat Desktop Applications in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "chatgpt-x-deepseek-x-grok-x-claude-linux-app-alexandephilia": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-chatgpt-x-deepseek-x-grok-x-claude-linux-app-alexandephilia"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "chatgpt-x-deepseek-x-grok-x-claude-linux-app-alexandephilia": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-chatgpt-x-deepseek-x-grok-x-claude-linux-app-alexandephilia"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "chatgpt-x-deepseek-x-grok-x-claude-linux-app-alexandephilia": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-chatgpt-x-deepseek-x-grok-x-claude-linux-app-alexandephilia"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "chatgpt-x-deepseek-x-grok-x-claude-linux-app-alexandephilia": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-chatgpt-x-deepseek-x-grok-x-claude-linux-app-alexandephilia"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "chatgpt-x-deepseek-x-grok-x-claude-linux-app-alexandephilia": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-chatgpt-x-deepseek-x-grok-x-claude-linux-app-alexandephilia"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "chatgpt-x-deepseek-x-grok-x-claude-linux-app-alexandephilia": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-chatgpt-x-deepseek-x-grok-x-claude-linux-app-alexandephilia"
      ]
    }
  }
}

FAQ

Are these applications free to use?

Yes! These applications are open-source and free to use.

Do I need to install anything special to run these applications?

You need Node.js and npm installed on your system to build and run the applications.

Can I contribute to the project?

Absolutely! Contributions are welcome, and you can find guidelines in the repository.