@andrebuzeli/git-mcp 15.12.3 → 15.12.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@andrebuzeli/git-mcp",
3
- "version": "15.12.3",
3
+ "version": "15.12.4",
4
4
  "private": false,
5
5
  "description": "MCP server para Git com operações locais e sincronização paralela GitHub/Gitea",
6
6
  "license": "MIT",
package/src/index.js CHANGED
@@ -47,7 +47,7 @@ if (!hasGitHub && !hasGitea) {
47
47
 
48
48
  const transport = new StdioServerTransport();
49
49
  const server = new Server(
50
- { name: "git-mcp", version: "15.12.3" },
50
+ { name: "git-mcp", version: "15.12.4" },
51
51
  { capabilities: { tools: {}, resources: {}, prompts: {} } }
52
52
  );
53
53
  server.connect(transport);
@@ -550,7 +550,8 @@ Execute a atualização completa utilizando uma única chamada com \`git-workflo
550
550
  {
551
551
  "projectPath": "${context.projectPath}",
552
552
  "action": "update",
553
- "message": "tipo: descrição das mudanças"
553
+ "message": "tipo: descrição das mudanças",
554
+ "gitignore": ["padrao_para_ignorar"] // Opcional
554
555
  }
555
556
  \`\`\`
556
557
 
@@ -22,7 +22,7 @@ Operações Git essenciais.
22
22
 
23
23
  | Action | Descrição | Parâmetros |
24
24
  |--------|-----------|------------|
25
- | **update** | **⭐ RECOMENDADO - Fluxo completo automatizado** | **message="msg" (obrigatório), files=["."], force=false, skipIfClean=false** |
25
+ | **update** | **⭐ RECOMENDADO - Fluxo completo automatizado** | **message, files=["."], gitignore=["pattern"], force, skipIfClean** |
26
26
  | status | Ver arquivos modificados/staged | - |
27
27
  | add | Adicionar ao staging | files=["."] ou ["arquivo.js"] |
28
28
  | commit | Criar commit | message="descrição" (obrigatório) |
@@ -31,7 +31,7 @@ Operações Git essenciais.
31
31
  | ensure-remotes | Configurar remotes | - |
32
32
  | clean | Remover arquivos não rastreados | - |
33
33
 
34
- **Exemplo update:** \`{ "projectPath": "/path", "action": "update", "message": "feat: nova funcionalidade" }\`
34
+ **Exemplo update:** \`{ "projectPath": "/path", "action": "update", "message": "feat: nova func", "gitignore": ["*.log"] }\`
35
35
 
36
36
  ---
37
37