loading…
Search for a command to run...
loading…
Exposes the full functionality of the Superpowers framework as MCP tools to provide AI assistants with advanced capabilities like automated planning, debugging,
Exposes the full functionality of the Superpowers framework as MCP tools to provide AI assistants with advanced capabilities like automated planning, debugging, and parallel development. It seamlessly integrates with clients like Claude Desktop, Cursor, and Trae for an enhanced AI-driven coding experience.
基于 superpowers 开发的 MCP (Model Context Protocol) 服务器,为 AI 助手提供强大的扩展能力。
npm install -g https://github.com/xinyuzjj/superpowers-mcp.git
git clone https://github.com/xinyuzjj/superpowers-mcp.git
cd superpowers-mcp
npm install
npm run build
npm link
在你的 MCP 客户端配置文件中添加以下内容:
{
"mcpServers": {
"superpowers": {
"command": "mcp-superpowers"
}
}
}
{
"mcpServers": {
"superpowers": {
"command": "npx",
"args": ["@xinyuzjj/superpowers-mcp"]
}
}
}
配置完成后,重启你的 AI 助手即可开始使用 superpowers 功能。
run-superpower-command运行 superpowers 命令
参数说明:
command: 要执行的 superpowers 命令名称(必填)args: 命令的参数列表(可选)使用示例:
{
"name": "run-superpower-command",
"parameters": {
"command": "write-plan",
"args": ["开发一个待办事项应用"]
}
}
list-superpower-skills列出所有可用的 superpowers 技能
使用示例:
{
"name": "list-superpower-skills",
"parameters": {}
}
Superpowers 内置了丰富的开发技能:
# 安装依赖
npm install
# 构建项目
npm run build
# 开发模式(自动监听文件变化)
npm run dev
# 运行测试
npm test
superpowers-mcp/
├── src/
│ └── index.ts # MCP 服务器主入口
├── skills/ # 所有 superpowers 技能文件
├── commands/ # 内置命令定义
├── agents/ # 代理配置
├── dist/ # 编译输出目录
├── package.json
├── tsconfig.json
└── README.md
欢迎提交 Issue 和 Pull Request!
git checkout -b feature/AmazingFeature)git commit -m 'Add some AmazingFeature')git push origin feature/AmazingFeature)本项目基于 MIT 许可证开源 - 查看 LICENSE 文件了解详情。
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"superpowers-mcp": {
"command": "npx",
"args": []
}
}
}