Dive AI Agent
An open-source desktop application for hosting MCP servers that integrates with function-calling LLMs.
Dive AI Agent π€Ώ π€
Dive is an open-source MCP Host Desktop Application that seamlessly integrates with any LLMs supporting function calling capabilities. β¨

Table of Contents
- Features
- Recent Updates
- Download and Install
- MCP Setup Options
- Keyboard Shortcuts
- Configuration
- Build
- Contributing
- License
- Connect With Us
Features π―
- π Universal LLM Support: Compatible with ChatGPT, Anthropic, Ollama and OpenAI-compatible models
- π» Cross-Platform: Available for Windows, MacOS, and Linux
- π Model Context Protocol: Enabling seamless MCP AI agent integration on both stdio and SSE mode
- βοΈ OAP Cloud Integration: One-click access to managed MCP servers via OAPHub.ai - eliminates complex local deployments
- ποΈ Dual Architecture: Modern Tauri version alongside traditional Electron version for optimal performance
- π Multi-Language Support: Supports 24+ languages including English, Traditional Chinese, Simplified Chinese, Spanish, Japanese, Korean, German, French, Italian, Portuguese, Russian, Thai, Vietnamese, Filipino, Indonesian, Polish, Turkish, Ukrainian, Swedish, Norwegian, Finnish, and Lao
- βοΈ Advanced API Management: Multiple API keys and model switching support with
model_settings.json - π οΈ Granular Tool Control: Enable/disable individual MCP tools for precise customization
- π‘ Custom Instructions: Personalized system prompts for tailored AI behavior
- β¨οΈ Keyboard Shortcuts: Comprehensive hotkey support for efficient navigation and operations (rename, settings, reload, new chat, etc.)
- π Chat Draft Saving: Automatically saves chat input drafts to prevent data loss
- π Auto-Update Mechanism: Automatically checks for and installs the latest application updates
- π₯οΈ Command-Line Options: Support for language selection and other configurations via command-line arguments
Recent updates(2025/10/28) - v0.9.10 π
Latest Improvements
- β¨οΈ Hotkey Enhancements: Added new hotkeys for rename, open settings, and reload; fixed reload hotkey visibility
- π¬ Chat Control: Fixed abort chat immediately functionality for better conversation control
- π οΈ Tool Management: Toggle individual tools separately without waiting for other tools to load
- π Tool Dropdown: Added convenient tool dropdown menu in chat input for quick tool selection
- π Model List Filtering: Added provider filter for OpenRouter model list for easier model selection
- πΎ Chat Draft Feature: Implemented automatic saving of chat input drafts to prevent data loss
- π UI Improvements: Fixed dropdown scroll position recovery for better navigation experience
- π¦ MCP Host Update: Bumped MCP host version for enhanced functionality and stability
- ποΈ CI Improvements: Disabled mss output in release builds for cleaner outputs
- π Translation Fix: Updated translations for better localization
- π§ Configuration Enhancements: Added support for OAP configuration from JSON files
Previous Updates (v0.9.9)
- πͺ Microsoft Store Support: Added Microsoft Store configuration and asset handling for Windows Store distribution
- πΌοΈ Image Caching Fix: Fixed issue with copying cached images in local storage
- π§ Workflow Improvements: Updated GitHub release workflow for better automation
- π Settings Enhancements: Removed redundant setDefaultInstructions functionality
- π OAP Server List Fix: Fixed duplicate page loading in OAP server list pagination
- π§ Model Configuration Fixes: Fixed Anthropic model list in Tauri and corrected provider settings in advanced configuration
- π Improved Model Management: Added priority sorting for OAP models and sorted LLM models by creation time
- πΎ Better Model Persistence: Enhanced model selection persistence across sessions and fixed auto-use of OAP models
Previous Major Changes (v0.9.5)
- ποΈ Dual Architecture Support: Both Electron and Tauri frameworks supported simultaneously
- β‘ Tauri Version: Modern architecture with optimized installer size (Windows < 30MB)
- π OAP Platform Integration: Native support for OAPHub.ai cloud services
- π OAP Authentication: Comprehensive login and authentication support
- π οΈ Granular MCP Control: Individual tool enable/disable functionality
- π§ Linux Tauri Support: Full Tauri framework support on Linux platforms
Platform Availability
- Windows: Available in both Electron and Tauri versions β
- macOS: Currently Electron only π
- Linux: Available in both Electron and Tauri versions β
Migration Note: Existing local MCP/LLM configurations remain fully supported. OAP integration is additive and does not affect current workflows.
Download and Install β¬οΈ
Get the latest version of Dive:
Windows users: πͺ
Choose between two architectures:
- Tauri Version (Recommended): Smaller installer (<30MB), modern architecture
- Electron Version: Traditional architecture, fully stable
- Python and Node.js environments will be downloaded automatically after launching
MacOS users: π
- Electron Version: Download the .dmg version
- You need to install Python and Node.js (with npx uvx) environments yourself
- Follow the installation prompts to complete setup
Linux users: π§
Choose between two architectures:
- Tauri Version (Recommended): Modern architecture with smaller installer size
- Electron Version: Traditional architecture with .AppImage format
- You need to install Python and Node.js (with npx uvx) environments yourself
- For Ubuntu/Debian users:
- You may need to add
--no-sandboxparameter - Or modify system settings to allow sandbox
- Run
chmod +xto make the AppImage executable
- You may need to add
- For Arch users:
- If you are using Arch Linux, you can install dive using an AUR helper. For example:
paru -S dive-ai
- If you are using Arch Linux, you can install dive using an AUR helper. For example:
MCP Setup Options
Dive offers two ways to access MCP tools: OAP Cloud Services (recommended for beginners) and Local MCP Servers (for advanced users).
Option 1: Local MCP Servers π οΈ
For advanced users who prefer local control. The system comes with a default echo MCP Server, and you can add more powerful tools like Fetch and Youtube-dl.

Option 2: OAP Cloud Services βοΈ
The easiest way to get started! Access enterprise-grade MCP tools instantly:
- Sign up at OAPHub.ai
- Connect to Dive using one-click deep links or configuration files
- Enjoy managed MCP servers with zero setup - no Python, Docker, or complex dependencies required
Benefits:
- β Zero configuration needed
- β Cross-platform compatibility
- β Enterprise-grade reliability
- β Automatic updates and maintenance
Quick Local Setup
Add this JSON configuration to your Dive MCP settings to enable local tools:
"mcpServers":{
"fetch": {
"command": "uvx",
"args": [
"mcp-server-fetch",
"--ignore-robots-txt"
],
"enabled": true
},
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/files"
],
"enabled": true
},
"youtubedl": {
"command": "npx",
"args": [
"@kevinwatt/yt-dlp-mcp"
],
"enabled": true
}
}
Using Streamable HTTP for Cloud MCP Services
You can connect to external cloud MCP servers via Streamable HTTP transport. Here's the Dive configuration example for SearXNG service from OAPHub:
{
"mcpServers": {
"SearXNG_MCP_Server": {
"transport": "streamable",
"url": "https://proxy.oaphub.ai/v1/mcp/181672830075666436",
"headers": {
"Authorization": "GLOBAL_CLIENT_TOKEN"
}
}
}
}
Reference: @https://oaphub.ai/mcp/181672830075666436
Using SSE Server (Non-Local MCP)
You can also connect to external MCP servers (not local ones) via SSE (Server-Sent Events). Add this configuration to your Dive MCP settings:
{
"mcpServers": {
"MCP_SERVER_NAME": {
"enabled": true,
"transport": "sse",
"url": "YOUR_SSE_SERVER_URL"
}
}
}
Additional Setup for yt-dlp-mcp
yt-dlp-mcp requires the yt-dlp package. Install it based on your operating system:
Windows
winget install yt-dlp
MacOS
brew install yt-dlp
Linux
pip install yt-dlp
Keyboard Shortcuts β¨οΈ
Dive provides comprehensive keyboard shortcuts for efficient workflow. Press ? or use the keyboard icon in the header to view all available shortcuts.
Common Shortcuts
| Action | Windows/Linux | macOS |
|---|---|---|
| New Chat | Ctrl+N | β+N |
| Rename Chat | Ctrl+R | β+R |
| Delete Chat | Ctrl+D | β+D |
| Open Settings | Ctrl+, | β+, |
| Toggle Sidebar | Ctrl+B | β+B |
| Reload Application | Ctrl+Shift+R | β+β§+R |
| Show Keyboard Shortcuts | ? | ? |
Note: You can view and customize keyboard shortcuts by pressing
?or clicking the keyboard icon in the application header.
Configuration βοΈ
LLM Configuration
Dive supports multiple LLM providers. Configure your API keys and models in the settings:
- Open Settings (
Ctrl+,orβ+,) - Navigate to LLM Configuration
- Add your API keys for desired providers
- Select your preferred model
Supported providers:
- OpenAI (GPT-3.5, GPT-4, etc.)
- Anthropic (Claude models)
- Ollama (local models)
- OpenRouter
- AWS Bedrock
- Mistral AI
- Any OpenAI-compatible endpoints
MCP Configuration
MCP servers can be configured in two ways:
- Via UI: Navigate to Tools/MCP Manager in settings
- Via JSON: Edit the configuration file directly
Example configuration structure:
{
"mcpServers": {
"server-name": {
"command": "npx",
"args": ["-y", "mcp-server-name"],
"enabled": true
}
}
}
Custom Instructions
Set custom system prompts in Settings > Custom Instructions to tailor AI behavior to your needs.
Language Settings
Dive supports 24+ languages. You can:
- Change language in Settings > General > Language
- Auto-detect based on system locale
Build π οΈ
See BUILD.md for more details.
Contributing π€
We welcome contributions from the community! Here's how you can help:
Ways to Contribute
- π Report Bugs: Found a bug? Open an issue on our Issue Tracker
- π‘ Suggest Features: Have ideas for new features? We'd love to hear them!
- π Improve Translations: Help us translate Dive into more languages
- π Documentation: Help improve our documentation
- π» Code Contributions: Submit pull requests with bug fixes or new features
Development Setup
- Fork the repository
- Clone your fork:
git clone https://github.com/YOUR_USERNAME/Dive.git - Install dependencies:
npm install - Start development:
npm run dev(Electron) ornpm run dev:tauri(Tauri) - Make your changes and test thoroughly
- Submit a pull request
Code Standards
- Follow the existing code style
- Write clear commit messages
- Add tests for new features
- Update documentation as needed
License π
Dive is open-source software licensed under the MIT License.
Copyright (c) 2025 Open Agent Platform
You are free to use, modify, and distribute this software. See the LICENSE file for full details.
Connect With Us π
- π¬ Join our Discord
- π¦ Follow us on Twitter/X Reddit Thread
- β Star us on GitHub
- π Report issues on our Issue Tracker
Related Servers
Sistema de PredicciΓ³n EnergΓ©tica con IA
An AI-powered system for analyzing and predicting domestic energy consumption. It offers precise forecasts, historical pattern analysis, and personalized optimization recommendations through a conversational interface.
MCP Options Order Flow Server
A high-performance MCP server for comprehensive options order flow analysis.
Paraview_MCP
An autonomous agent that integrates large language models with ParaView for creating and manipulating scientific visualizations using natural language and visual inputs.
Azure DevOps MCP Server for Cursor
Integrate Azure DevOps with Cursor IDE. Provides over 60 tools using PAT authentication, no CLI needed.
CDP MCP Server
Access Composers' Desktop Project (CDP) sound transformation programs. Requires a separate CDP installation.
Authless Remote MCP Server
A remote MCP server deployable on Cloudflare Workers that does not require authentication.
Feishu API
Fetches API information from Feishu OpenAPI for seamless integration and management within an IDE.
Jimeng
Integrates Jimeng AI for image generation.
Geo Location Demo
Retrieves user geolocation information using EdgeOne Pages Functions and exposes it via the Model Context Protocol (MCP).
Photoshop MCP Server
An MCP server for integrating with and automating Adobe Photoshop using the photoshop-python-api.