$git clone https://github.com/daodao97/chatmcpCross-platform Macos | Windows | Linux | iOS | Android | Web AI Chat Client
| 1 | <div align="center"> |
| 2 | <img src="./assets/logo.png" alt="logo" width="120" height="120"> |
| 3 | <h1>chatmcp</h1> |
| 4 | |
| 5 | Cross-platform `Macos | Windows | Linux | iOS | Android | Web` AI Chat Client |
| 6 | |
| 7 | [English](./README.md) | [简体中文](./README_ZH.md) | [Türkçe](./README_TR.md) |
| 8 | |
| 9 | </div> |
| 10 | |
| 11 | ## Install |
| 12 | |
| 13 | | macOS | Windows | Linux | iOS | Android | Web | |
| 14 | |---------------------------------------------------------|---------------------------------------------------------|-----------------------------------------------------------|----------------------------------------------------------|---------------------------------------------------------|--------------------------------------------------------| |
| 15 | | [Release](https://github.com/daodao97/chatmcp/releases) | [Release](https://github.com/daodao97/chatmcp/releases) | [Release](https://github.com/daodao97/chatmcp/releases) ¹ | [TestFlight](https://testflight.apple.com/join/dCXksFJV) | [Release](https://github.com/daodao97/chatmcp/releases) | [GitHub Pages](https://daodao97.github.io/chatmcp) ² | |
| 16 | |
| 17 | ¹ **Linux Notes:** |
| 18 | - See Linux requirements below for AppImage/DEB runtime dependencies on Ubuntu 22.04 and 24.04 |
| 19 | - Improved Experience: Latest versions include better dark theme support, unified data storage following [XDG Base Directory Specification](https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html), and optimized UI layout for Linux desktop environments is planned |
| 20 | - Tested on major distributions: Ubuntu, Fedora, Arch Linux, openSUSE |
| 21 | |
| 22 | ² Note: Web version runs entirely in your browser with local storage for chat history and settings. |
| 23 | |
| 24 | ## Documentation |
| 25 | |
| 26 | Also, you can use DeepWiki to get more information about chatmcp. |
| 27 | [](https://deepwiki.com/daodao97/chatmcp) DeepWiki is an AI-powered platform that transforms any |
| 28 | public GitHub repository into a fully interactive, easy-to-understand wiki. By analysing code, documentation, and configuration files, it creates |
| 29 | clear explanations, interactive diagrams, and even allows for real-time Q&A with the AI. |
| 30 | |
| 31 | ## Preview |
| 32 | |
| 33 |  |
| 34 |  |
| 35 |  |
| 36 |  |
| 37 |  |
| 38 |  |
| 39 |  |
| 40 |  |
| 41 |  |
| 42 |  |
| 43 |  |
| 44 |  |
| 45 | |
| 46 | ### Data Sync |
| 47 | |
| 48 | ChatMCP applications can sync data within the same local area network |
| 49 | |
| 50 |  |
| 51 | |
| 52 | ## Usage |
| 53 | |
| 54 | Make sure you have installed `uvx` or `npx` in your system |
| 55 | |
| 56 | ### MacOS |
| 57 | |
| 58 | ```bash |
| 59 | # uvx |
| 60 | brew install uv |
| 61 | |
| 62 | # npx |
| 63 | brew install node |
| 64 | ``` |
| 65 | |
| 66 | ### Linux |
| 67 | |
| 68 | ```bash |
| 69 | # uvx |
| 70 | curl -LsSf https://astral.sh/uv/install.sh | sh |
| 71 | |
| 72 | # npx (using apt) |
| 73 | sudo apt update |
| 74 | sudo apt install nodejs npm |
| 75 | ``` |
| 76 | |
| 77 | ### Linux Requirements (Ubuntu 22.04 and 24.04) |
| 78 | |
| 79 | For running ChatMCP AppImage/DEB on Ubuntu and derivatives, install the following runtime packages: |
| 80 | |
| 81 | - AppImage (FUSE): `libfuse2` |
| 82 | - GTK 3: `libgtk-3-0` |
| 83 | - Graphics/EGL: |
| 84 | - Ubuntu 22.04: `libegl1-mesa`, `libgles2`, `libgl1-mesa-dri`, `libglx-mesa0` |
| 85 | - Ubuntu 24.04: `libegl1`, `libgles2`, `libgl1-mesa-dri`, `libglx-mesa0` |
| 86 | - X11 utilities and SQLite: `libx11-6`, `xdg-utils`, `libsqlite3-0` |
| 87 | |
| 88 | Install commands: |
| 89 | |
| 90 | - Ubuntu 22.04: |
| 91 | ```bash |
| 92 | sudo apt install -y libfuse2 libgtk-3-0 libegl1-mesa libgles2 libgl1-mesa-dri libglx-mesa0 libx11-6 xdg-utils libsqlite3-0 libsqlite3-dev |
| 93 | ``` |
| 94 | |
| 95 | - Ubuntu 2 |