├── CONTRIBUTING.md ├── LICENSE ├── README.md └── screenshots ├── .DS_Store ├── aiaw ├── dark.png ├── dialog.png ├── mobile.png └── plugins.png ├── carrotai ├── carrotai_chat.png ├── carrotai_env.png ├── carrotai_home.png ├── carrotai_myapps.png ├── carrotai_settings.png └── carrotai_shop.png ├── chainlit ├── add-mcp.png ├── example.png └── manage-mcps.png ├── chatmcp ├── preview.png └── settings.png ├── cherry-studio ├── preview.png └── settings.png ├── claude-desktop └── claude-desktop.png ├── claudemind ├── ClaudeMind_Desktop_Chat_History.png ├── ClaudeMind_Desktop_NewChatPage.png └── ClaudeMind_Desktop_Projects.png ├── cline └── cline-demo.gif ├── console-chat-gpt ├── markdown_preview.gif ├── python_for_loop.gif └── settings_preview.gif ├── continue └── continue-demo.gif ├── copilot-mcp └── preview.png ├── cursor ├── called.png ├── calling.png ├── cursor.png ├── new-server.png └── settings.png ├── deepchat ├── deepchat.png └── setting.png ├── dolphin-mcp └── dolphin-mcp.png ├── eechat ├── mcp_add.png ├── mcp_bin.png ├── mcp_chat.png └── mcp_main.png ├── enconvo ├── agent_use_mcp.png └── mcp_config.png ├── github-copilot-mcp ├── mcp_config_vscode.png └── mcp_use_in_copilot.png ├── goose ├── custom-extension-chat.png ├── custom-extension-tools-9d440447ae99b18ae92819e652148abe.png ├── extension settings.png ├── goose.png └── list tools.png ├── hyperchat ├── image13.png ├── image21.png ├── image22.png ├── image33.png ├── image34.png ├── image35.png ├── image36.png ├── image42.png ├── image43.png ├── image44.png ├── image45.png ├── image46.png └── image48.png ├── librechat └── librechat.webp ├── mcp-cli-client └── usage.png ├── mcp-simple-slackbot └── demo.gif ├── mindpal ├── agent-config.jpg └── mcp-integration.jpg ├── oterm ├── chat.png └── mcp.svg ├── seekchat ├── screenshot-chat.png └── screenshot-setting-mcp.png ├── simple-ai-chat ├── fetch.png └── mcp-settings.png ├── superinterface ├── interfaces.png ├── mcp-chat.png ├── setup-1.png ├── setup-2.png └── setup-3.png ├── tester-mcp-client ├── chat-ui.png └── setup.png ├── tome ├── chat.png └── mcp.png ├── whatsmcp ├── main.png └── whatsmcp.gif ├── windsurf ├── easy-add-mcp-servers.png ├── settings-cascade-mcp.png └── windsurf.png ├── witsy ├── main.jpg └── mcp.jpg └── y-cli ├── interactive-chat.png ├── mcp.gif └── multi-mcp-server.png /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing to Awesome MCP Servers 2 | 3 | Contributions are welcome and encouraged! Whether you're fixing a typo, adding a new client, or suggesting improvements, your help is appreciated. 4 | 5 | ## How to Contribute 6 | 7 | 1. **Fork the repository:** Click the "Fork" button in the top right corner of the GitHub page. 8 | 9 | 2. **Create a new branch:** Create a new branch for your changes. This keeps your changes separate from the main project until they're ready to be merged. A good branch name describes the changes you're making, e.g., `add-new-client` or `fix-typo`. 10 | 11 | ```bash 12 | git checkout -b add-new-client 13 | ``` 14 | 15 | 3. **Make your changes:** Edit the `README.md` file with your additions or corrections. Please follow the existing format and style. When adding a new client, make sure to include: 16 | 17 | * The client name, linked to its repository/website. 18 | * A brief description of the client's functionality. 19 | 20 | 4. **Commit your changes:** Commit your changes with a clear and concise message explaining what you've done. 21 | 22 | ```bash 23 | git commit -m "Add new XYZ client" 24 | ``` 25 | 26 | 5. **Push your branch:** Push your branch to your forked repository. 27 | 28 | ```bash 29 | git push origin add-new-client 30 | ``` 31 | 32 | 6. **Create a pull request:** Go to the original repository and click the "New pull request" button. Select your forked repository and branch. Provide a clear title and description of your changes in the pull request. 33 | 34 | 7. **Review and merge:** Your pull request will be reviewed by the maintainers. They may suggest changes or ask for clarification. Once the review is complete, your changes will be merged into the main project. 35 | 36 | 37 | ## Guidelines 38 | 39 | * **Keep it consistent:** Follow the existing format and style of the `README.md` file. This includes formatting, capitalization, and punctuation. 40 | * **Alphabetical order:** Maintain alphabetical order within each category of clients. This makes it easier to find specific clients. 41 | * **Accurate information:** Ensure that all information is accurate and up-to-date. Double-check links and descriptions before submitting your changes. 42 | * **One client per line:** List each client on a separate line for better readability. 43 | * **Clear descriptions:** Write concise and informative descriptions for each client. Explain what the client does and what its key features are. 44 | 45 | Thank you for contributing! 46 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | ===================== 3 | 4 | Copyright © 2025 Frank Fiegel (frank@glama.ai) 5 | 6 | Permission is hereby granted, free of charge, to any person 7 | obtaining a copy of this software and associated documentation 8 | files (the “Software”), to deal in the Software without 9 | restriction, including without limitation the rights to use, 10 | copy, modify, merge, publish, distribute, sublicense, and/or sell 11 | copies of the Software, and to permit persons to whom the 12 | Software is furnished to do so, subject to the following 13 | conditions: 14 | 15 | The above copyright notice and this permission notice shall be 16 | included in all copies or substantial portions of the Software. 17 | 18 | THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, 19 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 20 | OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 21 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 22 | HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 23 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 24 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 25 | OTHER DEALINGS IN THE SOFTWARE. 26 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Awesome MCP Clients [![Awesome](https://awesome.re/badge.svg)](https://awesome.re) 2 | 3 | [![Discord](https://img.shields.io/discord/1312302100125843476?logo=discord&label=discord)](https://glama.ai/mcp/discord) 4 | [![Subreddit subscribers](https://img.shields.io/reddit/subreddit-subscribers/mcp?style=flat&logo=reddit&label=subreddit)](https://www.reddit.com/r/mcp/) 5 | 6 | A curated list of awesome Model Context Protocol (MCP) clients. 7 | 8 | * [What is MCP?](#what-is-mcp) 9 | * [Community](#community) 10 | * [Clients](#clients) 11 | * [Servers](#servers) 12 | 13 | ## What is MCP? 14 | 15 | [MCP](https://modelcontextprotocol.io/) is an open protocol that enables AI models to securely interact with local and remote resources through standardized server implementations. This list focuses on production-ready and experimental MCP clients that extend AI capabilities through file access, database connections, API integrations, and other contextual services. 16 | 17 | ## Community 18 | 19 | * [r/mcp Reddit](https://www.reddit.com/r/mcp) 20 | * [Discord Server](https://glama.ai/mcp/discord) 21 | 22 | ## Clients 23 | 24 | - [Awesome MCP Clients ](#awesome-mcp-clients-) 25 | - [What is MCP?](#what-is-mcp) 26 | - [Community](#community) 27 | - [Clients](#clients) 28 | - [eechat](#eechat) 29 | - [5ire](#5ire) 30 | - [AIaW](#aiaw) 31 | - [CarrotAI](#CarrotAI) 32 | - [Chainlit](#chainlit) 33 | - [ChatMCP](#chatmcp) 34 | - [Cherry Studio](#cherry-studio) 35 | - [Claude Desktop](#claude-desktop) 36 | - [ClaudeMind](#claudemind) 37 | - [Cline](#cline) 38 | - [console-chat-gpt](#console-chat-gpt) 39 | - [Copilot-MCP](#copilot-mcp) 40 | - [Cursor](#cursor) 41 | - [Continue](#continue) 42 | - [DeepChat](#deepchat) 43 | - [Dolphin-MCP](#dolphin-mcp) 44 | - [FLUJO](#flujo) 45 | - [Goose](#goose) 46 | - [HyperChat](#hyperchat) 47 | - [kibitz](#kibitz) 48 | - [LibreChat](#librechat) 49 | - [MCP Chatbot](#mcp-chatbot) 50 | - [MCP CLI client](#mcp-cli-client) 51 | - [MCP Simple Slackbot](#mcp-simple-slackbot) 52 | - [MCPOmni Connect](#mcpomni-connect) 53 | - [Nerve](#nerve) 54 | - [NextChat](#nextchat) 55 | - [oterm](#oterm) 56 | - [Superinterface](#superinterface) 57 | - [SeekChat](#seekchat) 58 | - [Simple AI](#simple-ai-chat) 59 | - [Tester MCP Client](#tester-mcp-client) 60 | - [Tome](#tome) 61 | - [VS Code GitHub Copilot](#vs-code-github-copilot) 62 | - [Windsurf](#windsurf) 63 | - [Witsy](#witsy) 64 | - [Enconvo](#enconvo) 65 | - [y-cli](#y-cli) 66 | - [Zed](#zed) 67 | - [MindPal](#mindpal) 68 | - [WhatsMCP](#whatsmcp) 69 | - [Servers](#servers) 70 | 71 | 72 | ### eechat 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 |
GitHubhttps://github.com/Lucassssss/eechat
Websitehttps://www.ee.chat/
LicenseModified Apache 2.0
TypeDesktop app
PlatformsWindows, MacOS, Linux
PricingFree
Programming LanguagesTypeScript
83 | 84 | An open-source, cross-platform desktop application that seamlessly connects with full support for MCP, across Linux, macOS, and Windows. 85 | 86 |
87 | Screenshots 88 | 89 | ![example](./screenshots/eechat/mcp_main.png) 90 | ![add-mcp](./screenshots/eechat/mcp_add.png) 91 | ![mcp-env](./screenshots/eechat/mcp_bin.png) 92 | 93 |
94 | 95 | ### 5ire 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 |
GitHubhttps://github.com/nanbingxyz/5ire
Websitehttps://5ire.app/
LicenseModified Apache 2.0 (non-commercial)
TypeDesktop app
PlatformsWindows, MacOS, Linux
PricingFree
Programming LanguagesTypeScript
106 | 107 | 5ire is a cross-platform desktop AI assistant, MCP client. It compatible with major service providers, supports local knowledge base and tools via model context protocol servers. 108 | 109 |
110 | Screenshots 111 | 112 | https://github.com/user-attachments/assets/a27494c5-437d-481c-a25f-74cfa5a2bc45 113 | 114 |
115 | 116 | ### AIaW 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 |
GitHubhttps://github.com/NitroRCr/AIaW
Websitehttps://aiaw.app/
LicenseBSD 3-Clause
TypeWeb app
PlatformsWeb
PricingFree
Programming LanguagesVue, TypeScript
127 | 128 | AIaW is a cross-platform, full-featured and lightweight AI Chat client with full support for MCP. 129 | 130 |
131 | Screenshots 132 | 133 | ![](./screenshots/aiaw/plugins.png) 134 | ![](./screenshots/aiaw/dialog.png) 135 | ![](./screenshots/aiaw/dark.png) 136 | 137 | 138 |
139 | 140 | ### CarrotAI 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 |
GitHubhttps://github.com/Xingsandesu/CarrotAI
Websitehttps://jintongshu.com/solutions/agent/
LicenseApache 2.0*
TypeWeb app
PlatformsWeb
PricingFree
Programming LanguagesDart, Python
151 | 152 | CarrotAI is an advanced AI agent application that enables real-time streaming chat using Server-Sent Events (SSE) and Streamable HTTP, with seamless integration of the Model Control Protocol (MCP). It supports concurrent connections to multiple SSE MCP servers and offers a multilingual user interface in English, Chinese, and Japanese. 153 | 154 |
155 | Screenshots 156 | 157 | ![chat](./screenshots/carrotai/carrotai_chat.png) 158 | ![homepage](./screenshots/carrotai/carrotai_home.png) 159 | ![seetings](./screenshots/carrotai/carrotai_settings.png) 160 | ![app market](./screenshots/carrotai/carrotai_shop.png) 161 | ![install app](./screenshots/carrotai/carrotai_env.png) 162 | ![app installed](./screenshots/carrotai/carrotai_myapps.png) 163 | 164 |
165 | 166 | 167 | ### Chainlit 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 |
GitHubhttps://github.com/chainlit/chainlit
Websitehttps://chainlit.io/
LicenseApache 2.0
TypeWeb app
PlatformsWeb
PricingFree
Programming LanguagesPython
178 | 179 | Chainlit is a python framework to build conversational AI apps with support for MCP. 180 | 181 |
182 | Screenshots 183 | 184 | ![example](./screenshots/chainlit/example.png) 185 | ![add-mcp](./screenshots/chainlit/add-mcp.png) 186 | ![manage-mcps](./screenshots/chainlit/manage-mcps.png) 187 | 188 |
189 | 190 | ### ChatMCP 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 |
GitHubhttps://github.com/daodao97/chatmcp
Website-
LicenseApache 2.0
TypeDesktop app
PlatformsWindows, MacOS, Linux
PricingFree
Programming LanguagesDart
201 | 202 | ChatMCP is an AI chat client implementing the Model Context Protocol (MCP). 203 | 204 |
205 | Screenshots 206 | 207 | ![](./screenshots/chatmcp/preview.png) 208 | ![](./screenshots/chatmcp/settings.png) 209 | 210 |
211 | 212 | ### Cherry Studio 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 |
GitHubhttps://github.com/CherryHQ/cherry-studio
Websitehttps://cherry-ai.com
LicenseApache 2.0 + Addendum Terms*
TypeDesktop app
PlatformsWindows, MacOS, Linux
PricingFree
Programming LanguagesTypeScript
222 | 223 | **Cherry Studio** is a desktop client that supports for multiple LLM providers, available on Windows, Mac and Linux. 224 | 225 | **Feature:** 226 | 227 | - **Multi-Model Support**: Integrates cloud (OpenAI, Gemini, Anthropic), web AI (Claude, Perplexity), and local models (Ollama, LM Studio). 228 | - **AI Assistants**: 300+ presets, custom creation, and multi-model parallel chats. 229 | - **Doc Processing**: Handles text/images/Office/PDF, WebDAV, Mermaid, and code highlighting. 230 | - **Productivity**: Global search, topic management, AI translation, drag-drop, mini-programs, and **MCP server**. 231 | - **UX**: Cross-platform (Win/Mac/Linux), plug-and-play, light/dark themes, transparent UI, full Markdown, and easy sharing. 232 | 233 |
234 | Screenshots 235 | 236 | ![preview](./screenshots/cherry-studio/preview.png) 237 | ![settings](./screenshots/cherry-studio/settings.png) 238 | 239 |
240 | 241 | 242 | 243 | ### Claude Desktop 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 |
GitHub-
Websitehttps://claude.ai/download
LicenseProprietary
TypeDesktop app
PlatformsWindows, MacOS
PricingFree
Programming Languages-
254 | 255 | The Claude desktop app brings Claude's capabilities directly to your computer, allowing for seamless integration with your workflow. 256 | 257 |
258 | Screenshots 259 | 260 | ![](./screenshots/claude-desktop/claude-desktop.png) 261 | 262 |
263 | 264 | ### ClaudeMind 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 |
GitHub-
Websitehttps://claudemind.com/
LicenseProprietary
TypeDesktop app, JetBrains extension
PlatformsWindows, MacOS
PricingPer seat (from $29)
Programming Languages-
275 | 276 | Experience Claude AI without limits. Use our desktop app for everyday AI assistance, or boost your coding productivity with our JetBrains plugin. 277 | 278 |
279 | Screenshots 280 | 281 | ![](./screenshots/claudemind/ClaudeMind_Desktop_Chat_History.png) 282 | ![](./screenshots/claudemind/ClaudeMind_Desktop_NewChatPage.png) 283 | ![](./screenshots/claudemind/ClaudeMind_Desktop_Projects.png) 284 | 285 |
286 | 287 | ### Cline 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 |
GitHubhttps://github.com/cline/cline
Websitehttps://marketplace.visualstudio.com/items?itemName=saoudrizwan.claude-dev
LicenseApache 2.0
TypeVSCode extension
PlatformsWindows, MacOS
PricingFree
Programming LanguagesTypeScript
298 | 299 | Cline can handle complex software development tasks step-by-step. With tools that let him create & edit files, explore large projects, use the browser, and execute terminal commands (after you grant permission), he can assist you in ways that go beyond code completion or tech support. Cline can even use the Model Context Protocol (MCP) to create new tools and extend his own capabilities. While autonomous AI scripts traditionally run in sandboxed environments, this extension provides a human-in-the-loop GUI to approve every file change and terminal command, providing a safe and accessible way to explore the potential of agentic AI. 300 | 301 |
302 | Screenshots 303 | 304 | ![](./screenshots/cline/cline-demo.gif) 305 | 306 |
307 | 308 | ### console-chat-gpt 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 |
GitHubhttps://github.com/amidabuddha/console-chat-gpt
Website-
LicenseMIT
TypeCLI
PlatformsWindows, MacOS, Linux
PricingFree
Programming LanguagesPython
319 | 320 | Enjoy seamless interactions with ChatGPT, MistralAI, Claude by Anthropic, Grok by xAI, Gemini by Google and DeepSeek directly from your command line. Elevate your chat experience with efficiency and ease. 321 | 322 |
323 | Screenshots 324 | 325 | ![](./screenshots/console-chat-gpt/markdown_preview.gif) 326 | ![](./screenshots/console-chat-gpt/python_for_loop.gif) 327 | ![](./screenshots/console-chat-gpt/settings_preview.gif) 328 | 329 |
330 | 331 | ### Copilot-MCP 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 |
GitHubhttps://github.com/VikashLoomba/copilot-mcp
Website-
LicenseGPL-v3
TypeVSCode Extension
PlatformsWindows, MacOS, Linux
PricingFree
Programming LanguagesAny
342 | 343 | VSCode extension that acts as a Model Context Protocol (MCP) client, enabling integration between MCP servers and GitHub Copilot Chat 344 | 345 |
346 | Screenshots 347 | 348 | ![](./screenshots/copilot-mcp/preview.png) 349 | 350 |
351 | 352 | ### Cursor 353 | 354 | 355 | 356 | 357 | 358 | 359 | 360 | 361 | 362 |
GitHubhttps://github.com/getcursor/cursor
Websitehttps://cursor.com
LicenseProprietary
TypeDesktop app
PlatformsWindows, MacOS, Linux
PricingFreemium
Programming LanguagesTypeScript
363 | 364 | Cursor is an AI-first code editor fork of VS Code that helps you code faster with built-in chat, edit, and debugging AI features. It supports MCP for enhanced AI capabilities and tool integration. 365 | 366 |
367 | Screenshots 368 | 369 | ![Main Interface](./screenshots/cursor/cursor.png) 370 | ![Adding New MCP Server](./screenshots/cursor/new-server.png) 371 | ![Settings Interface](./screenshots/cursor/settings.png) 372 | ![Calling MCP Server](./screenshots/cursor/calling.png) 373 | ![MCP Server Response](./screenshots/cursor/called.png) 374 | 375 |
376 | 377 | ### Continue 378 | 379 | 380 | 381 | 382 | 383 | 384 | 385 | 386 | 387 |
GitHubhttps://github.com/continuedev/continue
Websitehttps://continue.dev/
LicenseApache 2.0
TypeVSCode extension, JetBrains extension
PlatformsWindows, MacOS
PricingFree
Programming LanguagesTypeScript
388 | 389 | Continue is the leading open-source AI code assistant. You can connect any models and any context to build custom autocomplete and chat experiences inside VS Code and JetBrains. 390 | 391 |
392 | Screenshots 393 | 394 | ![](./screenshots/continue/continue-demo.gif) 395 | 396 |
397 | 398 | ### DeepChat 399 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 |
GitHubhttps://github.com/thinkinaixyz/deepchat
Websitehttps://deepchat.thinkinai.xyz/
LicenseApache 2.0
TypeDesktop app
PlatformsWindows, MacOS, Linux
PricingFree
Programming LanguagesTypeScript
409 | 410 | DeepChat is a cross-platform desktop AI assistant, MCP client. DeepChat brings the power of AI to your desktop with privacy and efficiency, making it your ideal companion for productive work. 411 | 412 |
413 | Screenshots 414 | 415 | ![](./screenshots/deepchat/deepchat.png) 416 | ![](./screenshots/deepchat/setting.png) 417 | 418 |
419 | 420 | ### Dolphin-MCP 421 | 422 | 423 | 424 | 425 | 426 | 427 | 428 | 429 | 430 |
GitHubhttps://github.com/cognitivecomputations/dolphin-mcp
Website-
LicenseMIT
TypeCLI, Python library
PlatformsLinux, Windows, MacOS
PricingFree
Programming LanguagesPython
431 | 432 | **Dolphin-MCP** is an open-source multi-server bridging client for MCP. It allows you to connect any MCP-compatible server any LLM (local or remote), enabling flexible tool usage and resource access in real-time. 433 | 434 | `pip install dolphin-mcp` 435 | 436 |
437 | Screenshots 438 | 439 | ![](./screenshots/dolphin-mcp/dolphin-mcp.png) 440 | 441 |
442 | 443 | ### FLUJO 444 | 445 | 446 | 447 | 448 | 449 | 450 | 451 | 452 | 453 |
GitHubhttps://github.com/mario-andreschak/FLUJO
Websiteflujo.orchestraight.co
LicenseMIT
TypeWeb app
PlatformsWeb
PricingFree
Programming LanguagesTypeScript
454 | 455 | Think n8n + ChatGPT. **FLUJO** is a desktop application that integrates with MCP to provide a workflow-builder interface for AI interactions. Built with Next.js and React, it supports both online and offline (ollama) models, it manages API Keys and environment variables centrally and can install MCP Servers from GitHub. FLUJO has a ChatCompletions endpoint and flows can be executed from other AI applications like Cline, Roo or Claude. 456 | 457 | - Environment & API Key Management 458 | - Model Management 459 | - MCP Server Integration 460 | - Workflow Orchestration 461 | - Chat Interface 462 | 463 |
464 | 465 | Screenshots 466 | 467 | ![image](https://github.com/user-attachments/assets/24e23174-4f1d-46e6-bf67-d40bec7135af) 468 | 469 | ![image](https://github.com/user-attachments/assets/7cb93912-f39c-40b5-9b8c-f485df2d3b69) 470 | 471 | ![image](https://github.com/user-attachments/assets/b27481b6-7c94-4ce6-aeba-211c9b9cdd4c) 472 | 473 | ![image](https://github.com/user-attachments/assets/eb9ff7ce-9083-44c1-9643-78acee50a66d) 474 | 475 | ![image](https://github.com/user-attachments/assets/c8910046-b642-4278-b48e-61083740c7a4) 476 | 477 | ![image](https://github.com/user-attachments/assets/ea381dda-1b0a-44d7-8a91-7ab48189ecad) 478 | 479 | ![image](https://github.com/user-attachments/assets/9e122dc8-d40d-45ce-a9fe-6eebf8759c91) 480 | 481 | ![image](https://github.com/user-attachments/assets/076a5d0c-bb35-4765-a2dc-8423d103eeb0) 482 | 483 | ![image](https://github.com/user-attachments/assets/91cd4525-9b13-4a5a-8f88-72efc11a913d) 484 | 485 |
486 | 487 | ### Goose 488 | 489 | 490 | 491 | 492 | 493 | 494 | 495 | 496 | 497 |
GitHubhttps://github.com/block/goose
Website-
LicenseApache 2.0
TypeAI Agent
PlatformsMacOS, Linux
PricingFree
Programming LanguagesRust
498 | 499 | Goose is a general-purpose AI agent that can dynamically plug into new extensions and learn how to use them. It solves higher-level problems using tools from multiple extensions and can interact with multiple extensions at once. 500 | 501 |
502 | Screenshots 503 | 504 | ![Goose Logo](./screenshots/goose/goose.png) 505 | ![Custom Extension Chat](./screenshots/goose/custom-extension-chat.png) 506 | ![Custom Extension Tools](./screenshots/goose/custom-extension-tools-9d440447ae99b18ae92819e652148abe.png) 507 | ![Extension Settings](./screenshots/goose/extension%20settings.png) 508 | ![List Tools](./screenshots/goose/list%20tools.png) 509 | 510 |
511 | 512 | ### HyperChat 513 | 514 | 515 | 516 | 517 | 518 | 519 | 520 | 521 | 522 |
GitHubhttps://github.com/BigSweetPotatoStudio/HyperChat
Website-
LicenseApache 2.0*
TypeDesktop app
PlatformsWindows, MacOS
PricingFree
Programming LanguagesJavaScript
523 | 524 | HyperChat is an open Chat client that can use various LLM APIs to provide the best Chat experience and implement productivity tools through the MCP protocol. 525 | 526 |
527 | Screenshots 528 | 529 | ![](./screenshots/hyperchat/image13.png) 530 | ![](./screenshots/hyperchat/image21.png) 531 | ![](./screenshots/hyperchat/image22.png) 532 | ![](./screenshots/hyperchat/image33.png) 533 | ![](./screenshots/hyperchat/image34.png) 534 | ![](./screenshots/hyperchat/image35.png) 535 | ![](./screenshots/hyperchat/image36.png) 536 | ![](./screenshots/hyperchat/image42.png) 537 | ![](./screenshots/hyperchat/image43.png) 538 | ![](./screenshots/hyperchat/image44.png) 539 | ![](./screenshots/hyperchat/image45.png) 540 | ![](./screenshots/hyperchat/image46.png) 541 | ![](./screenshots/hyperchat/image48.png) 542 | 543 |
544 | 545 | ### kibitz 546 | 547 | 548 | 549 | 550 | 551 | 552 | 553 | 554 | 555 |
GitHubhttps://github.com/nick1udwig/kibitz
Websitehttps://kibi.tz
LicenseMIT
TypeMobile app, Desktop app
PlatformsMobile, Windows, MacOS, Linux
PricingFree
Programming LanguagesTypeScript
556 | 557 | kibitiz is the free and open-source Replit. Minimally, it is a lightweight chat interface to the popular LLM APIs (Anthropic and OpenAI API formats supported). Experience automated tool loops: try asking your agent to use [wcgw](https://github.com/rusiaaman/wcgw) to make a change to a local repository, then fix linter and compiler errors, make a commit, and push to remote, all without user intervention! Even better, code on-the-go by setting up MCP servers on your laptop, then connecting from your mobile through [Kinode](https://github.com/kinode-dao/kinode). 558 | 559 |
560 | Screenshots 561 | 562 | https://github.com/user-attachments/assets/3f8df448-1c81-4ff2-8598-c48283a4dc00 563 | 564 |
565 | 566 | ### LibreChat 567 | 568 | 569 | 570 | 571 | 572 | 573 | 574 | 575 | 576 |
GitHubhttps://github.com/danny-avila/LibreChat
Websitehttps://www.librechat.ai/
LicenseMIT license
TypeWeb app
Platforms-
PricingFree
Programming LanguagesTypeScript
577 | 578 | Enhanced ChatGPT Clone: Features Agents, Anthropic, AWS, OpenAI, Assistants API, Azure, Groq, o1, GPT-4o, Mistral, OpenRouter, Vertex AI, Gemini, Artifacts, AI model switching, message search, Code Interpreter, langchain, DALL-E-3, OpenAPI Actions, Functions, Secure Multi-User Auth, Presets, open-source for self-hosting. 579 | 580 |
581 | Screenshots 582 | 583 | ![](./screenshots/librechat/librechat.webp) 584 | 585 |
586 | 587 | ### MCP Chatbot 588 | 589 | 590 | 591 | 592 | 593 | 594 | 595 | 596 | 597 |
GitHubhttps://github.com/3choff/mcp-chatbot
Website-
LicenseMIT
TypeCLI
PlatformsWindows, MacOS, Linux
PricingFree
Programming LanguagesPython
598 | 599 | This chatbot example demonstrates how to integrate the Model Context Protocol (MCP) into a simple CLI chatbot. The implementation showcases MCP's flexibility by supporting multiple tools through MCP servers and is compatible with any LLM provider that follows OpenAI API standards. 600 | 601 | ### MCP CLI client 602 | 603 | 604 | 605 | 606 | 607 | 608 | 609 | 610 | 611 |
GitHubhttps://github.com/adhikasp/mcp-client-cli
Website-
LicenseMIT
TypeCLI
PlatformsWindows, MacOS, Linux
PricingFree
Programming LanguagesPython
612 | 613 | A simple CLI to run LLM prompt and implement MCP client. 614 | 615 |
616 | Screenshots 617 | 618 | ![](./screenshots/mcp-cli-client/usage.png) 619 | 620 |
621 | 622 | ### MCP Simple Slackbot 623 | 624 | 625 | 626 | 627 | 628 | 629 | 630 | 631 | 632 |
GitHubhttps://github.com/sooperset/mcp-client-slackbot
Website-
LicenseMIT
TypeSlack Bot
PlatformsSlack
PricingFree
Programming LanguagesPython
633 | 634 | A simple Slack bot that uses LLMs and the Model Context Protocol (MCP) tools. 635 | 636 |
637 | Screenshots 638 | 639 | ![](./screenshots/mcp-simple-slackbot/demo.gif) 640 | 641 |
642 | 643 | ### MCPOmni Connect 644 | 645 | 646 | 647 | 648 | 649 | 650 | 651 | 652 | 653 |
GitHubhttps://github.com/Abiorh001/mcp_omni_connect
Website-
LicenseMIT
TypeCLI
PlatformsWindows, MacOS, Linux
PricingFree
Programming LanguagesPython
654 | 655 | A powerful universal CLI client for MCP Servers that provides seamless integration with multiple protocols, AI models, and tools through an intelligent interface. 656 | 657 | `uv add mcpomni-connect` or `pip install mcpomni-connect` 658 | 659 |
660 | Screenshots 661 | 662 | ![mcp_client_new1](https://github.com/user-attachments/assets/9c4eb3df-d0d5-464c-8815-8f7415a47fce) 663 | 664 |
665 | 666 | ### Nerve 667 | 668 | 669 | 670 | 671 | 672 | 673 | 674 | 675 | 676 |
GitHubhttps://github.com/evilsocket/nerve
Websitehttps://github.com/evilsocket/nerve
LicenseGPL3
TypeCLI
PlatformsWindows, MacOS, Linux
PricingFree
Programming LanguagesPython
677 | 678 | Nerve is an ADK ( Agent Development Kit ) and CLI designed to be a simple yet powerful platform for creating and executing LLM-based agents fully integrated with MCP. 679 | 680 |
681 | Screenshots 682 | 683 | [![asciicast](https://asciinema.org/a/710433.svg)](https://asciinema.org/a/710433) 684 | 685 |
686 | 687 | ### NextChat 688 | 689 | 690 | 691 | 692 | 693 | 694 | 695 | 696 | 697 |
GitHubhttps://github.com/ChatGPTNextWeb/NextChat
Websitehttps://nextchat.club/
LicenseMIT
TypeWeb app
PlatformsWindows, MacOS, Linux
PricingFree
Programming LanguagesTypeScript
698 | 699 | Light and Fast AI Assistant, with Claude, DeepSeek, GPT4, Gemini Pro & MCP support. 700 | 701 |
702 | Screenshots 703 | 704 | ![](https://github.com/ChatGPTNextWeb/NextChat/blob/main/docs/images/cover.png) 705 | 706 |
707 | 708 | ### oterm 709 | 710 | 711 | 712 | 713 | 714 | 715 | 716 | 717 | 718 |
GitHubhttps://github.com/ggozad/oterm
Website-
LicenseMIT
TypeCLI
PlatformsWindows, MacOS, Linux
PricingFree
Programming LanguagesPython
719 | 720 | A terminal client for Ollama, with support for MCP servers. 721 | 722 |
723 | Screenshots 724 | 725 | ![](./screenshots/oterm/chat.png) 726 | ![](./screenshots/oterm/mcp.svg) 727 | 728 |
729 | 730 | ### Superinterface 731 | 732 | 733 | 734 | 735 | 736 | 737 | 738 | 739 | 740 |
GitHubhttps://github.com/supercorp-ai/superinterface
Websitehttps://superinterface.ai
LicenseProprietary
TypeWeb app
PlatformsWeb
PricingFreemium
Programming LanguagesTypeScript
741 | 742 | Superinterface is AI infrastructure and a developer platform to build in-app AI assistants with support for MCP, interactive components, client-side function calling and more. 743 | 744 | Key features: 745 | 746 | - Use tools from MCP servers in assistants embedded via React components or script tags 747 | - SSE transport support 748 | - Use any AI model from any AI provider (OpenAI, Anthropic, Ollama, others) 749 | 750 |
751 | Screenshots 752 | 753 | ![](./screenshots/superinterface/mcp-chat.png) 754 | ![](./screenshots/superinterface/interfaces.png) 755 | ![](./screenshots/superinterface/setup-1.png) 756 | ![](./screenshots/superinterface/setup-2.png) 757 | ![](./screenshots/superinterface/setup-3.png) 758 | 759 |
760 | 761 | ### SeekChat 762 | 763 | 764 | 765 | 766 | 767 | 768 | 769 | 770 | 771 |
GitHubhttps://github.com/seekrays/seekchat
Websitehttps://seekrays.com/chat/
LicenseApache 2.0
TypeDesktop app
PlatformsWindows, MacOS
PricingFree
Programming LanguagesTypeScript
772 | 773 | ✨ A Sleek and Powerful AI Chat Desktop Application ✨ 774 | 775 | SeekChat supports MCP tool execution, enabling AI to directly control your computer and perform various tasks. Easily automate file management, data analysis, code development, and more, turning AI into a truly intelligent assistant. 776 | 777 |
778 | Screenshots 779 | 780 | ![](./screenshots/seekchat/screenshot-chat.png) 781 | ![](./screenshots/seekchat/screenshot-setting-mcp.png) 782 |
783 | 784 | ### Simple AI 785 | 786 | 787 | 788 | 789 | 790 | 791 | 792 | 793 | 794 |
GitHubhttps://github.com/gcc3/simple-ai-chat
Websitehttps://simple-ai.io
LicenseSimple AI License
TypeWeb/CLI
PlatformsWeb/npm
PricingFree
Programming LanguagesJavaScript
795 | 796 | Simple AI (simple-ai-io) is a command-based web/cli application, supports MCP. 797 | 798 |
799 | Screenshots 800 | 801 | ![](./screenshots/simple-ai-chat/mcp-settings.png) 802 | ![](./screenshots/simple-ai-chat/fetch.png) 803 |
804 | 805 | ### Tester MCP Client 806 | 807 | 808 | 809 | 810 | 811 | 812 | 813 | 814 | 815 |
GitHubhttps://github.com/apify/tester-mcp-client
Websitehttps://apify.com/jiri.spilka/tester-mcp-client
LicenseApache 2.0
TypeWeb app
PlatformsWeb
PricingFreemium
Programming LanguagesJavaScript
816 | 817 | A client that connects to any MCP server using Server-Sent Events (SSE) and displays conversations in a chat-like UI. 818 | It is a standalone Apify Actor for testing MCP servers over SSE, with support for Authorization headers. 819 | Built with plain JavaScript (old-school style) and hosted on Apify, it requires no setup to run. 820 | 821 | Key features: 822 | 823 | - Connects to any MCP server via Server-Sent Events (SSE). 824 | - Works with the [Apify MCP Server](https://apify.com/apify/actors-mcp-server) to interact with one or more Apify [Actors](https://apify.com/store). 825 | - Dynamically utilizes tools based on context and user queries (if supported by the server). 826 | - Open-source—review, suggest improvements, or modify as needed. 827 | 828 |
829 | Screenshots 830 | 831 | ![](./screenshots/tester-mcp-client/setup.png) 832 | ![](./screenshots/tester-mcp-client/chat-ui.png) 833 | 834 |
835 | 836 | ### Tome 837 | 838 | 839 | 840 | 841 | 842 | 843 | 844 | 845 | 846 |
GitHubhttps://github.com/runebookai/tome
Websitehttps://runebook.ai
LicenseApache 2.0
TypeDesktop app
PlatformsMacOS
PricingFree
Programming LanguagesRust, Typescript
847 | 848 | Tome is an open source cross-platform desktop app designed for working with local LLMs and MCP servers. Tome manages your MCP servers so there's no fiddling with uv/npm or json files - connect it to Ollama, copy/paste some MCP servers, and chat with an MCP-powered model in seconds. 849 | 850 | **Key features:** 851 | 852 | - MCP servers are managed by Tome so there is no need to install uv or npm or configure JSON 853 | - Users can quickly add or remove MCP servers via UI 854 | - Any tool-supported local model on Ollama is compatible 855 | 856 |
857 | Screenshots 858 | 859 | ![Chat](./screenshots/tome/chat.png) 860 | ![MCP Servers](./screenshots/tome/mcp.png) 861 |
862 | 863 | ### VS Code GitHub Copilot 864 | 865 | 866 | 867 | 868 | 869 | 870 | 871 | 872 | 873 |
GitHubhttps://github.com/microsoft/vscode
Websitehttps://code.visualstudio.com/
LicenseMIT
TypeDesktop app, Web app
PlatformsWindows, MacOS, Linux, Web
PricingFreemium (GitHub Copilot subscription)
Programming LanguagesTypeScript
874 | 875 | VS Code integrates MCP with GitHub Copilot through [agent mode](https://code.visualstudio.com/docs/copilot/chat/chat-agent-mode), allowing direct interaction with MCP-provided tools within your agentic coding workflow. Configure servers in Claude Desktop, workspace or user settings, with guided MCP installation and secure handling of keys in input variables to avoid leaking hard-coded keys. 876 | 877 | **Key Features:** 878 | 879 | - Support for stdio and server-sent events (SSE) transport 880 | - Per-session selection of tools per agent session for optimal performance 881 | - Easy server debugging with restart commands and output logging 882 | - Tool calls with editable inputs and always-allow toggle 883 | - Integration with existing VS Code extension system to register MCP servers from extensions 884 | 885 | ### Windsurf 886 | 887 | 888 | 889 | 890 | 891 | 892 | 893 | 894 | 895 |
GitHubN/A
Websitehttps://codeium.com/windsurf
LicenseProprietary
TypeDesktop app
PlatformsWindows, MacOS, Linux
PricingFreemium
Programming LanguagesTypeScript
896 | 897 | The first agentic IDE, and then some. The Windsurf Editor is where the work of developers and AI truly flow together, allowing for a coding experience that feels like literal magic. 898 | 899 |
900 | Screenshots 901 | 902 | ![Main Interface](./screenshots/windsurf/windsurf.png) 903 | ![Adding New MCP Server](./screenshots/windsurf/easy-add-mcp-servers.png) 904 | ![Settings Interface](./screenshots/windsurf/settings-cascade-mcp.png) 905 |
906 | 907 | ### Witsy 908 | 909 | 910 | 911 | 912 | 913 | 914 | 915 | 916 | 917 |
GitHubhttps://github.com/nbonamy/witsy
Websitehttps://witsyai.com
LicenseApache 2.0
TypeDesktop app
PlatformsWindows, MacOS, Linux
PricingFree
Programming LanguagesTypescript, Vue
918 | 919 | Witsy is an AI desktop assistant supporting models from all major providers and one keyboard shortcut away! 920 | 921 |
922 | Screenshots 923 | 924 | ![](./screenshots/witsy/main.jpg) 925 | ![](./screenshots/witsy/mcp.jpg) 926 | 927 |
928 | 929 | ### Enconvo 930 | 931 | 932 | 933 | 934 | 935 | 936 | 937 | 938 | 939 |
GitHubhttps://github.com/Enconvo
Websitehttps://enconvo.com
LicenseProprietary
TypeDesktop app
Platforms MacOS
PricingFreemium
Programming LanguagesTypescript, Python , Swift
940 | 941 | Enconvo is your AI Agent Launcher that revolutionizes productivity. With instant access, automate your daily tasks effortlessly. Our intelligent AI Agent system, powered by 150+ built-in tools and MCP support, learns and adapts to your workflow. Experience seamless automation and enhanced productivity with the most versatile AI assistant for macOS. 942 | 943 |
944 | Screenshots 945 | 946 | ![](./screenshots/enconvo/agent_use_mcp.png) 947 | ![](./screenshots/enconvo/mcp_config.png) 948 | 949 |
950 | 951 | ### y-cli 952 | 953 | 954 | 955 | 956 | 957 | 958 | 959 | 960 | 961 |
GitHubhttps://github.com/luohy15/y-cli
Website-
LicenseMIT
TypeCLI
PlatformsWindows, MacOS, Linux
PricingFree
Programming LanguagesPython
962 | 963 | A tiny command-line interface chat application that brings AI conversations to your terminal. Features include chat data storage in JSONL files, interactive chat interface, support for multiple bot configurations compatible with OpenAI chat completion streaming format, Deepseek-r1 reasoning content support, and MCP client support with multiple server configurations. 964 | 965 |
966 | Screenshots 967 | 968 | ![Interactive Chat](./screenshots/y-cli/interactive-chat.png) 969 | ![MCP Server Configurations](./screenshots/y-cli/multi-mcp-server.png) 970 | ![MCP Demo](./screenshots/y-cli/mcp.gif) 971 | 972 |
973 | 974 | ### Zed 975 | 976 | 977 | 978 | 979 | 980 | 981 | 982 | 983 | 984 |
GitHubhttps://github.com/zed-industries/zed
Websitehttps://zed.dev/
LicenseGNU
TypeDesktop app
PlatformsWindows, MacOS, Linux
PricingFree
Programming LanguagesRust
985 | 986 | Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter. 987 | 988 |
989 | Screenshots 990 | 991 | https://github.com/user-attachments/assets/95624731-5469-4b58-a21f-bbb31d9838fa 992 | 993 |
994 | 995 | ### MindPal 996 | 997 | 998 | 999 | 1000 | 1001 | 1002 | 1003 | 1004 | 1005 |
GitHubhttps://github.com/mindpal-ai/mindpal
Websitehttps://mindpal.io
LicenseProprietary
TypeWeb app
PlatformsWeb
PricingFreemium
Programming LanguagesTypeScript
1006 | 1007 | MindPal is a no-code platform for building and deploying AI agents and multi-agent workflows. It enables anyone without technical skills to create powerful AI automation solutions by connecting any AI model with any tool. Build complex workflows where multiple AI agents work together to accomplish tasks, with built-in support for MCP servers and tools. 1008 | 1009 | Key features: 1010 | - No-code AI agent builder 1011 | - Multi-agent workflow orchestration 1012 | - Support for any AI model provider 1013 | - MCP server integration 1014 | - Visual workflow designer 1015 | - Built-in tool marketplace 1016 | 1017 |
1018 | Screenshots 1019 | 1020 | ![](./screenshots/mindpal/agent-config.jpg) 1021 | ![](./screenshots/mindpal/mcp-integration.jpg) 1022 | 1023 |
1024 | 1025 | ### WhatsMCP 1026 | 1027 | 1028 | 1029 | 1030 | 1031 | 1032 | 1033 | 1034 | 1035 |
GitHubN/A
Websitehttps://wassist.app/mcp/
LicenseProprietary
TypeMobile app
PlatformsWhatsApp
PricingFreemium
Programming LanguagesN/A
1036 | 1037 | WhatsMCP is a WhatsApp agent that allows you to interact with MCP servers. It is a simple and easy to use tool that allows you to interact with your AI stack from WhatsApp. 1038 | 1039 |
1040 | Screenshots 1041 | 1042 | ![](./screenshots/whatsmcp/main.png) 1043 | ![](./screenshots/whatsmcp/whatsmcp.gif) 1044 | 1045 |
1046 | 1047 | ## Servers 1048 | 1049 | Looking for MCP servers? Check out the [awesome-mcp-servers](https://github.com/punkpeye/awesome-mcp-servers) repository. 1050 | -------------------------------------------------------------------------------- /screenshots/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/.DS_Store -------------------------------------------------------------------------------- /screenshots/aiaw/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/aiaw/dark.png -------------------------------------------------------------------------------- /screenshots/aiaw/dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/aiaw/dialog.png -------------------------------------------------------------------------------- /screenshots/aiaw/mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/aiaw/mobile.png -------------------------------------------------------------------------------- /screenshots/aiaw/plugins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/aiaw/plugins.png -------------------------------------------------------------------------------- /screenshots/carrotai/carrotai_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/carrotai/carrotai_chat.png -------------------------------------------------------------------------------- /screenshots/carrotai/carrotai_env.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/carrotai/carrotai_env.png -------------------------------------------------------------------------------- /screenshots/carrotai/carrotai_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/carrotai/carrotai_home.png -------------------------------------------------------------------------------- /screenshots/carrotai/carrotai_myapps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/carrotai/carrotai_myapps.png -------------------------------------------------------------------------------- /screenshots/carrotai/carrotai_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/carrotai/carrotai_settings.png -------------------------------------------------------------------------------- /screenshots/carrotai/carrotai_shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/carrotai/carrotai_shop.png -------------------------------------------------------------------------------- /screenshots/chainlit/add-mcp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/chainlit/add-mcp.png -------------------------------------------------------------------------------- /screenshots/chainlit/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/chainlit/example.png -------------------------------------------------------------------------------- /screenshots/chainlit/manage-mcps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/chainlit/manage-mcps.png -------------------------------------------------------------------------------- /screenshots/chatmcp/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/chatmcp/preview.png -------------------------------------------------------------------------------- /screenshots/chatmcp/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/chatmcp/settings.png -------------------------------------------------------------------------------- /screenshots/cherry-studio/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/cherry-studio/preview.png -------------------------------------------------------------------------------- /screenshots/cherry-studio/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/cherry-studio/settings.png -------------------------------------------------------------------------------- /screenshots/claude-desktop/claude-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/claude-desktop/claude-desktop.png -------------------------------------------------------------------------------- /screenshots/claudemind/ClaudeMind_Desktop_Chat_History.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/claudemind/ClaudeMind_Desktop_Chat_History.png -------------------------------------------------------------------------------- /screenshots/claudemind/ClaudeMind_Desktop_NewChatPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/claudemind/ClaudeMind_Desktop_NewChatPage.png -------------------------------------------------------------------------------- /screenshots/claudemind/ClaudeMind_Desktop_Projects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/claudemind/ClaudeMind_Desktop_Projects.png -------------------------------------------------------------------------------- /screenshots/cline/cline-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/cline/cline-demo.gif -------------------------------------------------------------------------------- /screenshots/console-chat-gpt/markdown_preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/console-chat-gpt/markdown_preview.gif -------------------------------------------------------------------------------- /screenshots/console-chat-gpt/python_for_loop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/console-chat-gpt/python_for_loop.gif -------------------------------------------------------------------------------- /screenshots/console-chat-gpt/settings_preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/console-chat-gpt/settings_preview.gif -------------------------------------------------------------------------------- /screenshots/continue/continue-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/continue/continue-demo.gif -------------------------------------------------------------------------------- /screenshots/copilot-mcp/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/copilot-mcp/preview.png -------------------------------------------------------------------------------- /screenshots/cursor/called.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/cursor/called.png -------------------------------------------------------------------------------- /screenshots/cursor/calling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/cursor/calling.png -------------------------------------------------------------------------------- /screenshots/cursor/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/cursor/cursor.png -------------------------------------------------------------------------------- /screenshots/cursor/new-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/cursor/new-server.png -------------------------------------------------------------------------------- /screenshots/cursor/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/cursor/settings.png -------------------------------------------------------------------------------- /screenshots/deepchat/deepchat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/deepchat/deepchat.png -------------------------------------------------------------------------------- /screenshots/deepchat/setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/deepchat/setting.png -------------------------------------------------------------------------------- /screenshots/dolphin-mcp/dolphin-mcp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/dolphin-mcp/dolphin-mcp.png -------------------------------------------------------------------------------- /screenshots/eechat/mcp_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/eechat/mcp_add.png -------------------------------------------------------------------------------- /screenshots/eechat/mcp_bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/eechat/mcp_bin.png -------------------------------------------------------------------------------- /screenshots/eechat/mcp_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/eechat/mcp_chat.png -------------------------------------------------------------------------------- /screenshots/eechat/mcp_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/eechat/mcp_main.png -------------------------------------------------------------------------------- /screenshots/enconvo/agent_use_mcp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/enconvo/agent_use_mcp.png -------------------------------------------------------------------------------- /screenshots/enconvo/mcp_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/enconvo/mcp_config.png -------------------------------------------------------------------------------- /screenshots/github-copilot-mcp/mcp_config_vscode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/github-copilot-mcp/mcp_config_vscode.png -------------------------------------------------------------------------------- /screenshots/github-copilot-mcp/mcp_use_in_copilot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/github-copilot-mcp/mcp_use_in_copilot.png -------------------------------------------------------------------------------- /screenshots/goose/custom-extension-chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/goose/custom-extension-chat.png -------------------------------------------------------------------------------- /screenshots/goose/custom-extension-tools-9d440447ae99b18ae92819e652148abe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/goose/custom-extension-tools-9d440447ae99b18ae92819e652148abe.png -------------------------------------------------------------------------------- /screenshots/goose/extension settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/goose/extension settings.png -------------------------------------------------------------------------------- /screenshots/goose/goose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/goose/goose.png -------------------------------------------------------------------------------- /screenshots/goose/list tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/goose/list tools.png -------------------------------------------------------------------------------- /screenshots/hyperchat/image13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/hyperchat/image13.png -------------------------------------------------------------------------------- /screenshots/hyperchat/image21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/hyperchat/image21.png -------------------------------------------------------------------------------- /screenshots/hyperchat/image22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/hyperchat/image22.png -------------------------------------------------------------------------------- /screenshots/hyperchat/image33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/hyperchat/image33.png -------------------------------------------------------------------------------- /screenshots/hyperchat/image34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/hyperchat/image34.png -------------------------------------------------------------------------------- /screenshots/hyperchat/image35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/hyperchat/image35.png -------------------------------------------------------------------------------- /screenshots/hyperchat/image36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/hyperchat/image36.png -------------------------------------------------------------------------------- /screenshots/hyperchat/image42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/hyperchat/image42.png -------------------------------------------------------------------------------- /screenshots/hyperchat/image43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/hyperchat/image43.png -------------------------------------------------------------------------------- /screenshots/hyperchat/image44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/hyperchat/image44.png -------------------------------------------------------------------------------- /screenshots/hyperchat/image45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/hyperchat/image45.png -------------------------------------------------------------------------------- /screenshots/hyperchat/image46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/hyperchat/image46.png -------------------------------------------------------------------------------- /screenshots/hyperchat/image48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/hyperchat/image48.png -------------------------------------------------------------------------------- /screenshots/librechat/librechat.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/librechat/librechat.webp -------------------------------------------------------------------------------- /screenshots/mcp-cli-client/usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/mcp-cli-client/usage.png -------------------------------------------------------------------------------- /screenshots/mcp-simple-slackbot/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/mcp-simple-slackbot/demo.gif -------------------------------------------------------------------------------- /screenshots/mindpal/agent-config.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/mindpal/agent-config.jpg -------------------------------------------------------------------------------- /screenshots/mindpal/mcp-integration.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/mindpal/mcp-integration.jpg -------------------------------------------------------------------------------- /screenshots/oterm/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/oterm/chat.png -------------------------------------------------------------------------------- /screenshots/oterm/mcp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | oTerm 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | oTerm — A terminal-based Ollama client. 184 | 185 | qwen2.5-coder:latestchat #2 - llama3.2:latestchat #3 - llama3.2:latest 186 | ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 187 |                                                                                                              model: llama3.2:latest 188 | 189 | meGit status at /oterm 190 | 191 | 192 | 193 | 194 | ollamaThe current status of the repository at /oterm shows that it is on branch feature/mcp-support. The branch is  195 | up-to-date with its corresponding remote branch origin/feature/mcp-support. 196 | 197 | There are four modified files in the working directory: 198 | 199 | ● src/oterm/app/oterm.py 200 | ● src/oterm/ollamaclient.py 201 | ● src/oterm/tools/init.py 202 | ● src/oterm/tools/mcp.py 203 | 204 | These files have been changed but not staged for commit. To update what will be committed, you can use "git add ...". 205 | To discard changes in the working directory, use "git restore ...". If you want to proceed with committing these  206 | changes, you can use "git commit -a". 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | ▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔ 218 | Message Ollama…post 219 | ▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁ 220 |  ^l multiline  ^i add image  ↑ history  ^tab next chat  shift+^tab prev chat  ^⌫ delete chat  ^n new chat  ^q quit ^p palette 221 | 222 | 223 | 224 | -------------------------------------------------------------------------------- /screenshots/seekchat/screenshot-chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/seekchat/screenshot-chat.png -------------------------------------------------------------------------------- /screenshots/seekchat/screenshot-setting-mcp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/seekchat/screenshot-setting-mcp.png -------------------------------------------------------------------------------- /screenshots/simple-ai-chat/fetch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/simple-ai-chat/fetch.png -------------------------------------------------------------------------------- /screenshots/simple-ai-chat/mcp-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/simple-ai-chat/mcp-settings.png -------------------------------------------------------------------------------- /screenshots/superinterface/interfaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/superinterface/interfaces.png -------------------------------------------------------------------------------- /screenshots/superinterface/mcp-chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/superinterface/mcp-chat.png -------------------------------------------------------------------------------- /screenshots/superinterface/setup-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/superinterface/setup-1.png -------------------------------------------------------------------------------- /screenshots/superinterface/setup-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/superinterface/setup-2.png -------------------------------------------------------------------------------- /screenshots/superinterface/setup-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/superinterface/setup-3.png -------------------------------------------------------------------------------- /screenshots/tester-mcp-client/chat-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/tester-mcp-client/chat-ui.png -------------------------------------------------------------------------------- /screenshots/tester-mcp-client/setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/tester-mcp-client/setup.png -------------------------------------------------------------------------------- /screenshots/tome/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/tome/chat.png -------------------------------------------------------------------------------- /screenshots/tome/mcp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/tome/mcp.png -------------------------------------------------------------------------------- /screenshots/whatsmcp/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/whatsmcp/main.png -------------------------------------------------------------------------------- /screenshots/whatsmcp/whatsmcp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/whatsmcp/whatsmcp.gif -------------------------------------------------------------------------------- /screenshots/windsurf/easy-add-mcp-servers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/windsurf/easy-add-mcp-servers.png -------------------------------------------------------------------------------- /screenshots/windsurf/settings-cascade-mcp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/windsurf/settings-cascade-mcp.png -------------------------------------------------------------------------------- /screenshots/windsurf/windsurf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/windsurf/windsurf.png -------------------------------------------------------------------------------- /screenshots/witsy/main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/witsy/main.jpg -------------------------------------------------------------------------------- /screenshots/witsy/mcp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/witsy/mcp.jpg -------------------------------------------------------------------------------- /screenshots/y-cli/interactive-chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/y-cli/interactive-chat.png -------------------------------------------------------------------------------- /screenshots/y-cli/mcp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/y-cli/mcp.gif -------------------------------------------------------------------------------- /screenshots/y-cli/multi-mcp-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punkpeye/awesome-mcp-clients/f142b14a650cdc6c38a6b86f399b3298ddf9c8ed/screenshots/y-cli/multi-mcp-server.png --------------------------------------------------------------------------------