来源信息
- 仓库
- RabbitAI-Lab/rabbit-plugins-mcp
- 最近来源活动
- 2026年7月26日 14:08
- 检测到的 SKILL.md 语言
- 中文
- 星标
- 0
- 分支
- 0
安装方式
默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。
检查来源文件
决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。
正在显示 SKILL.md
SKILL.md
来源说明 · 只读预览- name
- git-zh
- description
- Git 版本控制操作,提交、分支、diff。适用于需要Git 操作的 MCP 场景。
# git
Git 版本控制操作,提交、分支、diff
## 何时使用
- 通过 MCP 客户端使用 **git**
- git 所支持的官方核心相关任务
- 用 `claude mcp add` 或 `.mcp.json` 注册 git
## 安装
git 是 stdio 传输的 MCP 服务器。注册到 Claude Code:
```bash
claude mcp add git -- npx @modelcontextprotocol/server-git
```
或写入 `.mcp.json`:
```json
{
"mcpServers": {
"git": {
"command": "npx",
"args": [
"@modelcontextprotocol/server-git"
]
}
}
}
```
引导式安装脚本见 `scripts/install.sh`。
## 验证
```bash
claude mcp list
```
## 详情
- **服务器**: `git`
- **维护方**: Anthropic官方
- **协议**: stdio
- **分类**: 官方核心
- **推荐度**: 必装
- **核心功能**: Git 操作
在 GitHub 查看