AI Skill Hub 强烈推荐:Zenii 是一款优质的MCP工具。AI 综合评分 8.0 分,在同类工具中表现稳健。如果你正在寻找可靠的MCP工具解决方案,这是一个值得深入了解的选择。
Zenii 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
Zenii 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/sprklai/zenii
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"zenii": {
"command": "npx",
"args": ["-y", "zenii"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 Zenii 执行以下任务... Claude: [自动调用 Zenii MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"zenii": {
"command": "npx",
"args": ["-y", "zenii"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
<p align="center"> <img src="assets/zenii-master.gif" alt="Zenii demo" width="720" /> </p>
<p align="center"> Run a daemon at <code>localhost:18981</code>. Your desktop app, CLI, TUI, scripts, and MCP clients share the same memory, tools, providers, channels, and scheduler — no sync, no duplication. </p>
<p align="center"> <a href="https://github.com/sprklai/zenii/releases/latest"> <img src="https://img.shields.io/github/v/release/sprklai/zenii?style=flat-square" alt="Latest release" /> </a> <a href="https://github.com/sprklai/zenii/actions/workflows/ci.yml"> <img src="https://img.shields.io/github/actions/workflow/status/sprklai/zenii/ci.yml?style=flat-square&label=CI" alt="CI" /> </a> <a href="LICENSE"> <img src="https://img.shields.io/badge/license-MIT-green?style=flat-square" alt="MIT license" /> </a> <a href="https://github.com/sprklai/zenii/actions/workflows/ci.yml"> <img src="https://img.shields.io/badge/tests-1900-blue?style=flat-square" alt="1900 tests" /> </a> <a href="https://github.com/sprklai/zenii/pulls"> <img src="https://img.shields.io/badge/PRs-welcome-brightgreen?style=flat-square" alt="PRs welcome" /> </a> </p>
---
curl -s -X POST http://localhost:18981/chat \ -H "Content-Type: application/json" \ -d '{"session_id":"ops","prompt":"What port is the production database on?"}' | jq -r '.response' ```
That is the core contract: write state once, read it from anywhere that speaks HTTP.
[!TIP] Interactive API Docs — once the daemon is running, open http://127.0.0.1:18981/api-docs in your browser. You get a full Swagger-style explorer: every endpoint documented, live request testing, and code-snippet generation for curl, Python, Go, TypeScript, Rust, and more. No separate setup needed — it's built in.
---
uv/npx into an isolated cache (no fat sidecar)zenii runtime install uvtests auto-repair on failure: dependency errors get the missing module added, logic bugs get a reflective patchFull guide: docs.zenii.sprklai.com/par-guide
---
curl -s -X POST http://localhost:18981/wiki/query \ -H "Authorization: Bearer $ZENII_TOKEN" \ -d '{"query": "What does section 3 say about rollback?"}' ```
Full guide: docs.zenii.sprklai.com/wiki
---
```bash
zenii runtime install uv
zenii plugin install https://github.com/yourteam/repo-analyzer
Prerequisites: Rust 1.85+, Bun, SQLite development libraries.
git clone https://github.com/sprklai/zenii.git
cd zenii
cargo build --release -p zenii-daemon # headless server
cargo build --release -p zenii-cli # CLI client
cd crates/zenii-desktop && cargo tauri build # desktop app
Full setup guide: docs/development.md
---
<p align="center"> <img src="assets/Zenii-PiDog.gif" alt="Zenii running on a Raspberry Pi PiDog robot" width="540" /> </p>
Zenii runs on ARM — same binary, same API. Deploy it on a Raspberry Pi, attach tools, and your hardware becomes an AI-addressable endpoint over HTTP.
---
name: daily-digest steps: - id: search tool: web_search args: { query: "Rust ecosystem news today" } - id: store tool: memory_store args: { key: "digest/{{date}}", content: "{{steps.search.result}}" }
Run manually: `POST /workflows/daily-digest/run`
**Natural Language Workflow Creation** — describe a workflow in plain English; Zenii generates the TOML and opens the visual builder automatically. Available from the Workflows page (toggle to "Describe in English") and from the chat window (⬡ Workflow button, mutually exclusive with Delegate).
**Scheduler** — trigger any prompt or workflow on a cron schedule, executed as a full agent turn with access to all tools:
bash curl -s -X POST http://localhost:18981/scheduler/jobs \ -H "Authorization: Bearer $ZENII_TOKEN" \ -d '{"name":"daily-digest","cron":"0 8 *","prompt":"Run the daily-digest workflow"}' ```
Full guide: docs.zenii.sprklai.com/workflows · docs.zenii.sprklai.com/scheduler
---
Workflows — chain tools into DAGs with conditionals, loops, and parallel steps:
```yaml
高质量的开源MCP工具,提供强大的AI后端和基础设施
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
总体来看,Zenii 是一款质量优秀的MCP工具,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | zenii |
| 原始描述 | 开源MCP工具:Your machine's AI brain. One 20MB binary gives every tool, script, and cron job 。⭐23 · Rust |
| Topics | ai-agentsai-backendai-infrastructure |
| GitHub | https://github.com/sprklai/zenii |
| License | MIT |
| 语言 | Rust |
收录时间:2026-06-25 · 更新时间:2026-06-25 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端