经 AI Skill Hub 精选评估,lemonade MCP工具 获评「强烈推荐」。已获得 4.0k 颗 GitHub Star,这款AI工具在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 8.2 分,适合有一定技术背景的用户使用。
lemonade MCP工具 是一款基于 C++ 开发的开源工具,专注于 MCP协议、本地AI、LLM模型 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
lemonade MCP工具 是一款基于 C++ 开发的开源工具,专注于 MCP协议、本地AI、LLM模型 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
# 克隆仓库 git clone https://github.com/lemonade-sdk/lemonade cd lemonade # 查看安装说明 cat README.md # 按 README 完成环境依赖安装后即可使用
# 查看帮助 lemonade --help # 基本运行 lemonade [options] <input> # 详细使用说明请查阅文档 # https://github.com/lemonade-sdk/lemonade
# lemonade 配置说明 # 查看配置选项 lemonade --config-example > config.yml # 常见配置项 # output_dir: ./output # log_level: info # workers: 4 # 环境变量(覆盖配置文件) export LEMONADE_CONFIG="/path/to/config.yml"
<p align="center"> <a href="https://lemonade-server.ai/docs/server/apps/claude-code/" title="Claude Code"><img src="https://raw.githubusercontent.com/lemonade-sdk/marketplace/main/apps/claude-code/logo.png" alt="Claude Code" width="60" /></a> <a href="https://quickthoughts.ca/posts/firefox-chatback-lemonade-sdk/" title="Firefox Chatbot"><img src="https://raw.githubusercontent.com/lemonade-sdk/marketplace/main/apps/fx-chatbot/logo.png" alt="Firefox Chatbot" width="60" /></a> <a href="https://lemonade-server.ai/docs/server/apps/anythingLLM/" title="AnythingLLM"><img src="https://raw.githubusercontent.com/lemonade-sdk/marketplace/main/apps/anythingllm/logo.png" alt="AnythingLLM" width="60" /></a> <a href="https://marketplace.dify.ai/plugins/langgenius/lemonade" title="Dify"><img src="https://raw.githubusercontent.com/lemonade-sdk/marketplace/main/apps/dify/logo.png" alt="Dify" width="60" /></a> <a href="https://github.com/amd/gaia?tab=readme-ov-file#getting-started-guide" title="GAIA"><img src="https://raw.githubusercontent.com/lemonade-sdk/marketplace/main/apps/gaia/logo.png" alt="GAIA" width="60" /></a> <a href="https://admcpr.com/local-github-copilot-with-lemonade-server-on-windows" title="GitHub Copilot"><img src="https://raw.githubusercontent.com/lemonade-sdk/marketplace/main/apps/github-copilot/logo.png" alt="GitHub Copilot" width="60" /></a> <a href="https://github.com/lemonade-sdk/infinity-arcade" title="Infinity Arcade"><img src="https://raw.githubusercontent.com/lemonade-sdk/marketplace/main/apps/infinity-arcade/logo.png" alt="Infinity Arcade" width="60" /></a> <a href="https://n8n.io/integrations/lemonade-model/" title="n8n"><img src="https://raw.githubusercontent.com/lemonade-sdk/marketplace/main/apps/n8n/logo.png" alt="n8n" width="60" /></a> <a href="https://lemonade-server.ai/docs/server/apps/open-webui/" title="Open WebUI"><img src="https://raw.githubusercontent.com/lemonade-sdk/marketplace/main/apps/open-webui/logo.png" alt="Open WebUI" width="60" /></a> <a href="https://lemonade-server.ai/docs/server/apps/open-hands/" title="OpenHands"><img src="https://raw.githubusercontent.com/lemonade-sdk/marketplace/main/apps/openhands/logo.png" alt="OpenHands" width="60" /></a> </p>
<p align="center"><em>Want your app featured here? <a href="https://github.com/lemonade-sdk/marketplace">Just submit a marketplace PR!</a></em></p>
```python from openai import OpenAI
Lemonade supports multiple inference engines for LLM, speech, TTS, and image generation, and each has its own backend and hardware requirements.
| Modality | Engine | Backend | Device | OS |
|---|---|---|---|---|
| Text generation | llamacpp |
system |
x86_64/ARM64 CPU, GPU |
Linux |
metal |
Apple Silicon GPU | macOS | ||
cuda |
NVIDIA GPUs (Turing or newer)** | Windows, Linux | ||
vulkan |
x86_64 CPU, AMD iGPU, AMD dGPU; ARM64 CPU/GPU (Linux) |
Windows, Linux | ||
rocm |
Supported AMD ROCm iGPU/dGPU families* | Windows, Linux | ||
cpu |
x86_64 CPU; ARM64 CPU (Linux) |
Windows, Linux | ||
flm |
npu |
XDNA2 NPU | Windows, Linux | |
ryzenai-llm |
npu |
XDNA2 NPU | Windows | |
vllm (experimental) |
rocm |
Strix Halo iGPU (gfx1151) | Linux | |
| Speech-to-text | whispercpp |
npu |
XDNA2 NPU | Windows |
rocm |
Supported AMD ROCm iGPU/dGPU families* | Windows, Linux | ||
vulkan |
x86_64 CPU |
Windows, Linux | ||
cpu |
x86_64 CPU |
Windows, Linux | ||
metal |
Apple Silicon GPU | macOS | ||
moonshine |
cpu |
x86_64/arm64 CPU |
Windows, Linux, macOS | |
| Text-to-speech | kokoro |
cpu |
x86_64 CPU |
Windows, Linux |
metal |
Apple Silicon GPU | macOS | ||
| Image generation | sd-cpp |
rocm |
Supported AMD ROCm iGPU/dGPU families* | Windows, Linux |
cuda |
NVIDIA GPUs (Turing or newer)** | Linux | ||
vulkan |
Vulkan-capable GPUs | Windows, Linux | ||
cpu |
x86_64 CPU |
Windows, Linux | ||
metal |
Apple Silicon GPU | macOS |
To check exactly which recipes/backends are supported on your own machine, run:
lemonade backends
<details> <summary><small><i>* See supported AMD ROCm platforms</i></small></summary>
<br>
| Architecture | Platform Support | GPU Models |
|---|---|---|
| gfx1151 (STX Halo) | Windows, Ubuntu | Ryzen AI MAX+ Pro 395 |
| gfx120X (RDNA4) | Windows, Ubuntu | Radeon AI PRO R9700, RX 9070 XT/GRE/9070, RX 9060 XT |
| gfx110X (RDNA3) | Windows, Ubuntu | Radeon PRO W7900/W7800/W7700/V710, RX 7900 XTX/XT/GRE, RX 7800 XT, RX 7700 XT |
<details> <summary><small><i>** See supported NVIDIA CUDA platforms</i></small></summary>
<br>
| Compute Capability | Architecture | GPU Models |
|---|---|---|
| sm_75 | Turing | RTX 20-series, GTX 16-series, T4 |
| sm_80 / sm_86 | Ampere | RTX 30-series, A100, A40 |
| sm_89 | Ada Lovelace | RTX 40-series, L40, L4 |
| sm_90 | Hopper | H100, H200 |
| sm_100 / sm_120 | Blackwell | RTX 50-series, B100, B200 |
To read our frequently asked questions, see our FAQ Guide
高质量开源项目,MCP协议支持完善,性能优化到位。3.9k Stars彰显社区认可度,C++实现保证效率。适合专业开发者部署本地AI应用。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ Apache 2.0 — 宽松开源协议,可商用,需保留版权声明和 NOTICE 文件,含专利授权条款。
AI Skill Hub 点评:lemonade MCP工具 的核心功能完整,质量优秀。对于AI 技术爱好者来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | lemonade |
| 原始描述 | 开源MCP工具:Lemonade helps users discover and run local AI apps by serving optimized LLMs ri。⭐4.0k · C++ |
| Topics | MCP协议本地AILLM模型GPU加速开源工具 |
| GitHub | https://github.com/lemonade-sdk/lemonade |
| License | Apache-2.0 |
| 语言 | C++ |
收录时间:2026-05-17 · 更新时间:2026-05-19 · License:Apache-2.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。