osaurus MCP工具 是 AI Skill Hub 本期精选AI工具之一。已获得 5.4k 颗 GitHub Star,综合评分 8.2 分,整体质量较高。我们强烈推荐将其纳入你的 AI 工具库,帮助提升工作效率。
macOS原生AI代理框架,支持多模型接入与持久化记忆管理。集成Apple Neural Engine和Foundation Models,提供本地化、隐私优先的AI工具链。适合Mac开发者和AI应用构建者。
osaurus MCP工具 是一款基于 Swift 开发的开源工具,专注于 MCP协议、macOS原生、多模型支持 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
macOS原生AI代理框架,支持多模型接入与持久化记忆管理。集成Apple Neural Engine和Foundation Models,提供本地化、隐私优先的AI工具链。适合Mac开发者和AI应用构建者。
osaurus MCP工具 是一款基于 Swift 开发的开源工具,专注于 MCP协议、macOS原生、多模型支持 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
# 克隆仓库 git clone https://github.com/osaurus-ai/osaurus cd osaurus # 查看安装说明 cat README.md # 按 README 完成环境依赖安装后即可使用
# 查看帮助 osaurus --help # 基本运行 osaurus [options] <input> # 详细使用说明请查阅文档 # https://github.com/osaurus-ai/osaurus
# osaurus 配置说明 # 查看配置选项 osaurus --config-example > config.yml # 常见配置项 # output_dir: ./output # log_level: info # workers: 4 # 环境变量(覆盖配置文件) export OSAURUS_CONFIG="/path/to/config.yml"
<p align="center"> <img width="1920" height="1080" alt="osaurus-techcrunch-1" src="https://github.com/user-attachments/assets/d7905005-71fe-41ba-b69f-e8968af29b5c" /> </p>
<p align="center"> <strong>Own your AI.</strong><br> Agents, memory, tools, and identity that live on your Mac. Built purely in Swift. Fully offline. Open source. </p>
<p align="center"> <a href="https://github.com/osaurus-ai/osaurus/releases/latest"><img src="https://img.shields.io/github/v/release/osaurus-ai/osaurus?sort=semver" alt="Release"></a> <a href="https://github.com/osaurus-ai/osaurus/releases"><img src="https://img.shields.io/github/downloads/osaurus-ai/osaurus/total" alt="Downloads"></a> <a href="https://github.com/osaurus-ai/osaurus/blob/main/LICENSE"><img src="https://img.shields.io/github/license/osaurus-ai/osaurus" alt="License"></a> <a href="https://github.com/osaurus-ai/osaurus/stargazers"><img src="https://img.shields.io/github/stars/osaurus-ai/osaurus?style=social" alt="Stars"></a> </p>
<p align="center"> <img src="https://img.shields.io/badge/Platform-macOS%20(Apple%20Silicon)-black?logo=apple" alt="Platform"> <img src="https://img.shields.io/badge/OpenAI%20API-compatible-0A7CFF" alt="OpenAI API"> <img src="https://img.shields.io/badge/Anthropic%20API-compatible-0A7CFF" alt="Anthropic API"> <img src="https://img.shields.io/badge/Ollama%20API-compatible-0A7CFF" alt="Ollama API"> <img src="https://img.shields.io/badge/MCP-server-0A7CFF" alt="MCP Server"> <img src="https://img.shields.io/badge/Apple%20Foundation%20Models-supported-0A7CFF" alt="Foundation Models"> <a href="https://huggingface.co/OsaurusAI"><img src="https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-OsaurusAI-FFD21E" alt="Hugging Face"></a> <img src="https://img.shields.io/badge/PRs-welcome-brightgreen" alt="PRs Welcome"> </p>
<p align="center"> <a href="https://github.com/osaurus-ai/osaurus/releases/latest/download/Osaurus.dmg">Download for Mac</a> · <a href="https://docs.osaurus.ai">Docs</a> · <a href="https://huggingface.co/OsaurusAI">Models</a> · <a href="https://discord.gg/osaurus">Discord</a> · <a href="https://x.com/OsaurusAI">Twitter</a> · <a href="https://github.com/osaurus-ai/osaurus-tools">Plugin Registry</a> </p>
---
brew install --cask osaurus
Or download the latest .dmg from Releases. After installing, launch from Spotlight (⌘ Space → "Osaurus") or the CLI:
osaurus ui # Open the chat UI
osaurus serve # Start the server
osaurus status # Check status
Requires macOS 15.5+ and Apple Silicon.
git clone https://github.com/osaurus-ai/osaurus.git
cd osaurus
open osaurus.xcworkspace
Build and run the osaurus target. Requires Xcode 16+ and macOS 15.5+.
Drop-in endpoints for existing tools:
| API | Endpoint |
|---|---|
| OpenAI | http://127.0.0.1:1337/v1/chat/completions |
| Anthropic | http://127.0.0.1:1337/anthropic/v1/messages |
| Ollama | http://127.0.0.1:1337/api/chat |
All prefixes supported (/v1, /api, /v1/api). Full function calling with streaming tool call deltas. /chat/completions keeps strict OpenAI semantics -- it returns tool_calls and the client executes them, so Osaurus drops in cleanly behind harnesses that already manage their own tool loop. For server-side autonomous loops use POST /agents/{id}/run; to expose Osaurus tools to remote MCP harnesses use /mcp/tools + /mcp/call. See OpenAI API Guide for tool calling, streaming, and SDK examples. Building a macOS app that connects to Osaurus? See the Shared Configuration Guide.
osaurus tools install osaurus.browser # Install from registry
osaurus tools list # List installed
osaurus tools create MyPlugin --swift # Create a plugin
osaurus tools dev com.acme.my-plugin # Dev with hot reload
20+ native plugins: Mail, Calendar, Vision, macOS Use, XLSX, PPTX, Browser, Music, Git, Filesystem, Search, Fetch, and more. Plugins target the v3 host API surface — register HTTP routes, serve web apps, persist data in SQLite, dispatch agent tasks, and call inference through any model. Older v1/v2 plugins continue to load unchanged. See the Plugin Authoring Guide.
Document attachments keep structure where the file format exposes it: CSV/TSV tables, XLSX workbooks, PPTX decks, PDF page anchors, and rich document sections are parsed through the document adapter registry before they reach the agent.
高质量macOS AI框架,5.3k星标认可度强。Swift原生开发、MCP标准协议支持、隐私优先设计,是Mac生态AI应用的优选方案。维护活跃。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
经综合评估,osaurus MCP工具 在AI工具赛道中表现稳健,质量优秀。如果你已有明确的使用需求,可以直接上手体验;如果还在评估阶段,建议对比同类工具后再做决策。
| 原始名称 | osaurus |
| 原始描述 | 开源MCP工具:Own your AI. The native macOS harness for AI agents -- any model, persistent mem。⭐5.4k · Swift |
| Topics | MCP协议macOS原生多模型支持隐私保护持久化记忆 |
| GitHub | https://github.com/osaurus-ai/osaurus |
| License | MIT |
| 语言 | Swift |
收录时间:2026-05-18 · 更新时间:2026-05-19 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。