Paca 是 AI Skill Hub 本期精选MCP工具之一。综合评分 7.5 分,整体质量较高。我们推荐使用将其纳入你的 AI 工具库,帮助提升工作效率。
Paca 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
Paca 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/Paca-AI/paca
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"paca": {
"command": "npx",
"args": ["-y", "paca"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 Paca 执行以下任务... Claude: [自动调用 Paca MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"paca": {
"command": "npx",
"args": ["-y", "paca"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
<p align="center"> <img src="docs/assets/paca-logo.svg" alt="Paca logo" width="256" /> </p>
<p align="center"><strong>AI-native. Free. Lightweight. Open-source.<br/>The fully customizable alternative to Jira, Trello, ClickUp, and Monday.</strong></p>
<p align="center"> <a href="https://github.com/Paca-AI/paca/blob/master/LICENSE"><img src="https://img.shields.io/badge/license-Apache%202.0-blue" alt="License" /></a> <a href="https://github.com/Paca-AI/paca/releases"><img src="https://img.shields.io/github/v/release/Paca-AI/paca" alt="Latest Release" /></a> <a href="https://github.com/Paca-AI/paca/stargazers"><img src="https://img.shields.io/github/stars/Paca-AI/paca?style=social" alt="Stars" /></a> </p>
<p align="center"> <a href="#getting-started">Getting Started</a> · <a href="#mcp-server--connect-any-ai-agent-to-paca">MCP Server</a> · <a href="#claude-code--paca-skill">Claude Code Skill</a> · <a href="docs/architecture/overview.md">Architecture</a> · <a href="CONTRIBUTING.md">Contributing</a> · <a href="ROADMAP.md">Roadmap</a> </p>
---
/paca slash command for Claude Code; manage tasks, docs, and sprints in plain English without leaving your editor---
docker compose -f deploy/docker-compose.dev.yml up -d postgres valkey
Runs on any Linux server with Docker. No repository clone required.
curl -fsSL https://github.com/Paca-AI/paca/releases/latest/download/install.sh | bash
The script walks you through configuration interactively and starts the full stack. Open http://your-server-ip when it finishes.
<p align="center"> <img src="docs/assets/demo-install.gif" width="720" alt="How to Install Paca on Any Linux Server with One Command" /> </p>
---
```bash
Run this once in your terminal to install all skills globally:
curl -fsSL https://raw.githubusercontent.com/Paca-AI/paca/master/scripts/install-claude-skill.sh | bash
Then connect the Paca MCP server to Claude Code:
claude mcp add paca \
--env PACA_API_KEY=<your-api-key> \
--env PACA_API_URL=<your-paca-url> \
-- npx -y @paca-ai/paca-mcp
Run /paca-setup inside a Claude Code session for a guided interactive walkthrough instead.
Paca ships as a small, focused core. Everything else is optional.
Configuration-driven: workflows, statuses, field definitions, board layouts, sprint rules, and agent behavior are all driven by project-level configuration files. No code needed to adapt Paca to your team's process.
Plugin system: extend or replace any part of Paca via plugins. Plugins are compiled to WebAssembly (WASM) for the backend (write in Go, Rust, AssemblyScript — anything with a WASM target) and standard module bundles for the frontend. Plugins run in a sandboxed environment with a capability-based permission model; they declare exactly what host functions they need, and nothing more.
plugins/
├── backend/ # WASM modules — add custom routes, logic, data models
└── frontend/ # UI modules — add custom pages, board views, widgets
Browse and install community plugins directly from the Plugin Marketplace inside the Paca UI — no command line required. Go to Settings → Plugins → Marketplace, find a plugin, and click Install.
<p align="center"> <img src="docs/assets/demo-plugin-marketplace.gif" width="720" alt="Paca Plugin Marketplace — Install Community Plugins in One Click" /> </p>
For local development or custom plugins, you can also install from the filesystem:
./scripts/install-local-plugin.sh ./my-plugin --api-key <your-api-key>
---
cat > .env <<'EOF' JWT_SECRET=<run: openssl rand -hex 32> ADMIN_PASSWORD=<your-admin-password> POSTGRES_PASSWORD=<run: openssl rand -hex 32> AGENT_API_KEY=<run: openssl rand -hex 32> INTERNAL_API_KEY=<run: openssl rand -hex 32> ENCRYPTION_KEY=<run: openssl rand -hex 32> PUBLIC_URL=http://localhost EOF
```bash
| Variable | Required | Default | Description |
|---|---|---|---|
PACA_API_KEY | Yes | — | API key from your Paca instance (Settings → API Keys) |
PACA_API_URL | No | http://localhost:8080 | URL of your Paca API |
Paca是一个有潜力的开源MCP工具,值得关注
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ Apache 2.0 — 宽松开源协议,可商用,需保留版权声明和 NOTICE 文件,含专利授权条款。
经综合评估,Paca 在MCP工具赛道中表现稳健,质量良好。如果你已有明确的使用需求,可以直接上手体验;如果还在评估阶段,建议对比同类工具后再做决策。
| 原始名称 | paca |
| 原始描述 | 开源MCP工具:AI-native, free, open-source alternative to Jira, Trello, ClickUp & Monday. Buil。⭐8 · Go |
| Topics | ai-agentbddclickup-alternativejira-alternativemcpgo |
| GitHub | https://github.com/Paca-AI/paca |
| License | Apache-2.0 |
| 语言 | Go |
收录时间:2026-06-09 · 更新时间:2026-06-09 · License:Apache-2.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端