@andrebuzeli/git-mcp 2.40.0 → 2.42.0
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/dist/server.d.ts.map +1 -1
- package/dist/server.js +6 -8
- package/dist/server.js.map +1 -1
- package/dist/tools/git-remote.d.ts +2 -2
- package/dist/tools/git-reset.d.ts +4 -4
- package/dist/tools/git-update-project.d.ts +44 -21
- package/dist/tools/git-update-project.d.ts.map +1 -1
- package/dist/tools/git-update-project.js +186 -231
- package/dist/tools/git-update-project.js.map +1 -1
- package/dist/utils/git-operations.d.ts.map +1 -1
- package/dist/utils/git-operations.js +9 -6
- package/dist/utils/git-operations.js.map +1 -1
- package/package.json +59 -59
- package/dist/tools/git-upload-project.d.ts +0 -173
- package/dist/tools/git-upload-project.d.ts.map +0 -1
- package/dist/tools/git-upload-project.js +0 -348
- package/dist/tools/git-upload-project.js.map +0 -1
package/dist/server.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../src/server.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../src/server.ts"],"names":[],"mappings":"AA+FA;;;;;;;;;;;;;;;;;;GAkBG;AACH,qBAAa,cAAc;IACzB,OAAO,CAAC,MAAM,CAAS;;IAavB;;;;;;;;;;;;;;;;;OAiBG;IACH,OAAO,CAAC,aAAa;IAuDrB;;;;;;;;;;;;;;;;;;OAkBG;IACG,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC;IA8D1B;;;;;;;;;;;;OAYG;IACG,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC;CAG7B"}
|
package/dist/server.js
CHANGED
|
@@ -7,9 +7,9 @@ const types_js_1 = require("@modelcontextprotocol/sdk/types.js");
|
|
|
7
7
|
const config_js_1 = require("./config.js");
|
|
8
8
|
const index_js_2 = require("./providers/index.js");
|
|
9
9
|
/**
|
|
10
|
-
* Importação de todas as ferramentas MCP disponíveis (
|
|
10
|
+
* Importação de todas as ferramentas MCP disponíveis (20 tools)
|
|
11
11
|
*
|
|
12
|
-
* GIT CORE (
|
|
12
|
+
* GIT CORE (20 tools) - Funcionam com GitHub + Gitea:
|
|
13
13
|
* - git-repositories: Gerenciamento de repositórios
|
|
14
14
|
* - git-commits: Operações com commits
|
|
15
15
|
* - git-pulls: Pull requests e merges
|
|
@@ -32,13 +32,12 @@ const index_js_2 = require("./providers/index.js");
|
|
|
32
32
|
* - git-packages: Gerenciamento de pacotes
|
|
33
33
|
* - git-projects: Gerenciamento de projetos
|
|
34
34
|
*/
|
|
35
|
-
// Git Core Tools (
|
|
35
|
+
// Git Core Tools (20)
|
|
36
36
|
const git_repositories_js_1 = require("./tools/git-repositories.js");
|
|
37
37
|
const git_commits_js_1 = require("./tools/git-commits.js");
|
|
38
38
|
const git_branches_js_1 = require("./tools/git-branches.js");
|
|
39
39
|
const git_tags_js_1 = require("./tools/git-tags.js");
|
|
40
40
|
const git_files_js_1 = require("./tools/git-files.js");
|
|
41
|
-
const git_upload_project_js_1 = require("./tools/git-upload-project.js");
|
|
42
41
|
const git_update_project_js_1 = require("./tools/git-update-project.js");
|
|
43
42
|
const git_initialize_js_1 = require("./tools/git-initialize.js");
|
|
44
43
|
const git_issues_js_1 = require("./tools/git-issues.js");
|
|
@@ -55,7 +54,7 @@ const git_sync_js_1 = require("./tools/git-sync.js");
|
|
|
55
54
|
const git_packages_js_1 = require("./tools/git-packages.js");
|
|
56
55
|
const git_projects_js_1 = require("./tools/git-projects.js");
|
|
57
56
|
/**
|
|
58
|
-
* Array de todas as ferramentas disponíveis (
|
|
57
|
+
* Array de todas as ferramentas disponíveis (20 tools)
|
|
59
58
|
*
|
|
60
59
|
* ESTRUTURA:
|
|
61
60
|
* - Cada tool deve implementar a interface Tool
|
|
@@ -63,7 +62,7 @@ const git_projects_js_1 = require("./tools/git-projects.js");
|
|
|
63
62
|
* - Handler deve ser assíncrono e retornar resultado
|
|
64
63
|
*
|
|
65
64
|
* ORGANIZAÇÃO:
|
|
66
|
-
* - Git Core (
|
|
65
|
+
* - Git Core (20): Funcionam com GitHub + Gitea
|
|
67
66
|
*
|
|
68
67
|
* USO:
|
|
69
68
|
* - Para listagem de tools disponíveis
|
|
@@ -71,13 +70,12 @@ const git_projects_js_1 = require("./tools/git-projects.js");
|
|
|
71
70
|
* - Para validação de parâmetros
|
|
72
71
|
*/
|
|
73
72
|
const tools = [
|
|
74
|
-
// Git Core Tools (
|
|
73
|
+
// Git Core Tools (20) - GitHub + Gitea
|
|
75
74
|
git_repositories_js_1.gitRepositoriesTool,
|
|
76
75
|
git_commits_js_1.commitsTool,
|
|
77
76
|
git_branches_js_1.branchesTool,
|
|
78
77
|
git_tags_js_1.tagsTool,
|
|
79
78
|
git_files_js_1.filesTool,
|
|
80
|
-
git_upload_project_js_1.uploadProjectTool,
|
|
81
79
|
git_update_project_js_1.gitUpdateProjectTool,
|
|
82
80
|
git_initialize_js_1.initializeTool,
|
|
83
81
|
git_issues_js_1.issuesTool,
|
package/dist/server.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"server.js","sourceRoot":"","sources":["../src/server.ts"],"names":[],"mappings":";;;AAAA,wEAAmE;AACnE,wEAAiF;AACjF,iEAAmG;AACnG,2CAAqC;AACrC,mDAAuF;AAEvF;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AAEH,sBAAsB;AACtB,qEAAkE;AAClE,2DAAqD;AACrD,6DAAuD;AACvD,qDAA+C;AAC/C,uDAAiD;AACjD,
|
|
1
|
+
{"version":3,"file":"server.js","sourceRoot":"","sources":["../src/server.ts"],"names":[],"mappings":"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"}
|
|
@@ -37,7 +37,7 @@ declare const GitRemoteInputSchema: z.ZodObject<{
|
|
|
37
37
|
}, "strip", z.ZodTypeAny, {
|
|
38
38
|
provider: "gitea" | "github";
|
|
39
39
|
repo: string;
|
|
40
|
-
action: "add" | "show" | "remove" | "prune" | "
|
|
40
|
+
action: "add" | "show" | "remove" | "prune" | "rename" | "set-url";
|
|
41
41
|
projectPath: string;
|
|
42
42
|
remote?: string | undefined;
|
|
43
43
|
new_name?: string | undefined;
|
|
@@ -47,7 +47,7 @@ declare const GitRemoteInputSchema: z.ZodObject<{
|
|
|
47
47
|
}, {
|
|
48
48
|
provider: "gitea" | "github";
|
|
49
49
|
repo: string;
|
|
50
|
-
action: "add" | "show" | "remove" | "prune" | "
|
|
50
|
+
action: "add" | "show" | "remove" | "prune" | "rename" | "set-url";
|
|
51
51
|
projectPath: string;
|
|
52
52
|
remote?: string | undefined;
|
|
53
53
|
new_name?: string | undefined;
|
|
@@ -35,20 +35,20 @@ declare const GitResetInputSchema: z.ZodObject<{
|
|
|
35
35
|
}, "strip", z.ZodTypeAny, {
|
|
36
36
|
provider: "gitea" | "github";
|
|
37
37
|
repo: string;
|
|
38
|
-
action: "soft" | "
|
|
38
|
+
action: "soft" | "hard" | "mixed" | "reset-to-commit" | "reset-branch";
|
|
39
39
|
projectPath: string;
|
|
40
40
|
branch_name?: string | undefined;
|
|
41
41
|
commit_hash?: string | undefined;
|
|
42
|
-
reset_type?: "soft" | "
|
|
42
|
+
reset_type?: "soft" | "hard" | "mixed" | undefined;
|
|
43
43
|
target_branch?: string | undefined;
|
|
44
44
|
}, {
|
|
45
45
|
provider: "gitea" | "github";
|
|
46
46
|
repo: string;
|
|
47
|
-
action: "soft" | "
|
|
47
|
+
action: "soft" | "hard" | "mixed" | "reset-to-commit" | "reset-branch";
|
|
48
48
|
projectPath: string;
|
|
49
49
|
branch_name?: string | undefined;
|
|
50
50
|
commit_hash?: string | undefined;
|
|
51
|
-
reset_type?: "soft" | "
|
|
51
|
+
reset_type?: "soft" | "hard" | "mixed" | undefined;
|
|
52
52
|
target_branch?: string | undefined;
|
|
53
53
|
}>;
|
|
54
54
|
export type GitResetInput = z.infer<typeof GitResetInputSchema>;
|
|
@@ -71,21 +71,6 @@ declare const GitUpdateProjectInputSchema: z.ZodDiscriminatedUnion<"action", [z.
|
|
|
71
71
|
branch?: string | undefined;
|
|
72
72
|
maxCount?: number | undefined;
|
|
73
73
|
oneline?: boolean | undefined;
|
|
74
|
-
}>, z.ZodObject<{
|
|
75
|
-
action: z.ZodLiteral<"reset">;
|
|
76
|
-
projectPath: z.ZodString;
|
|
77
|
-
mode: z.ZodOptional<z.ZodEnum<["soft", "mixed", "hard"]>>;
|
|
78
|
-
commit: z.ZodOptional<z.ZodString>;
|
|
79
|
-
}, "strip", z.ZodTypeAny, {
|
|
80
|
-
action: "reset";
|
|
81
|
-
projectPath: string;
|
|
82
|
-
commit?: string | undefined;
|
|
83
|
-
mode?: "soft" | "mixed" | "hard" | undefined;
|
|
84
|
-
}, {
|
|
85
|
-
action: "reset";
|
|
86
|
-
projectPath: string;
|
|
87
|
-
commit?: string | undefined;
|
|
88
|
-
mode?: "soft" | "mixed" | "hard" | undefined;
|
|
89
74
|
}>, z.ZodObject<{
|
|
90
75
|
action: z.ZodLiteral<"stash">;
|
|
91
76
|
projectPath: z.ZodString;
|
|
@@ -137,6 +122,36 @@ declare const GitUpdateProjectInputSchema: z.ZodDiscriminatedUnion<"action", [z.
|
|
|
137
122
|
projectPath: string;
|
|
138
123
|
branch?: string | undefined;
|
|
139
124
|
forcePush?: boolean | undefined;
|
|
125
|
+
}>, z.ZodObject<{
|
|
126
|
+
action: z.ZodLiteral<"init">;
|
|
127
|
+
repo: z.ZodString;
|
|
128
|
+
projectPath: z.ZodString;
|
|
129
|
+
provider: z.ZodEnum<["gitea", "github"]>;
|
|
130
|
+
message: z.ZodString;
|
|
131
|
+
branch: z.ZodOptional<z.ZodString>;
|
|
132
|
+
createRepo: z.ZodOptional<z.ZodBoolean>;
|
|
133
|
+
forcePush: z.ZodOptional<z.ZodBoolean>;
|
|
134
|
+
granular: z.ZodOptional<z.ZodBoolean>;
|
|
135
|
+
}, "strip", z.ZodTypeAny, {
|
|
136
|
+
provider: "gitea" | "github";
|
|
137
|
+
message: string;
|
|
138
|
+
repo: string;
|
|
139
|
+
action: "init";
|
|
140
|
+
projectPath: string;
|
|
141
|
+
branch?: string | undefined;
|
|
142
|
+
forcePush?: boolean | undefined;
|
|
143
|
+
createRepo?: boolean | undefined;
|
|
144
|
+
granular?: boolean | undefined;
|
|
145
|
+
}, {
|
|
146
|
+
provider: "gitea" | "github";
|
|
147
|
+
message: string;
|
|
148
|
+
repo: string;
|
|
149
|
+
action: "init";
|
|
150
|
+
projectPath: string;
|
|
151
|
+
branch?: string | undefined;
|
|
152
|
+
forcePush?: boolean | undefined;
|
|
153
|
+
createRepo?: boolean | undefined;
|
|
154
|
+
granular?: boolean | undefined;
|
|
140
155
|
}>]>;
|
|
141
156
|
export type GitUpdateProjectInput = z.infer<typeof GitUpdateProjectInputSchema>;
|
|
142
157
|
declare const GitUpdateProjectResultSchema: z.ZodObject<{
|
|
@@ -197,6 +212,16 @@ export declare const gitUpdateProjectTool: {
|
|
|
197
212
|
description: string;
|
|
198
213
|
default: boolean;
|
|
199
214
|
};
|
|
215
|
+
createRepo: {
|
|
216
|
+
type: string;
|
|
217
|
+
description: string;
|
|
218
|
+
default: boolean;
|
|
219
|
+
};
|
|
220
|
+
granular: {
|
|
221
|
+
type: string;
|
|
222
|
+
description: string;
|
|
223
|
+
default: boolean;
|
|
224
|
+
};
|
|
200
225
|
detailed: {
|
|
201
226
|
type: string;
|
|
202
227
|
description: string;
|
|
@@ -226,12 +251,6 @@ export declare const gitUpdateProjectTool: {
|
|
|
226
251
|
description: string;
|
|
227
252
|
default: boolean;
|
|
228
253
|
};
|
|
229
|
-
mode: {
|
|
230
|
-
type: string;
|
|
231
|
-
enum: string[];
|
|
232
|
-
description: string;
|
|
233
|
-
default: string;
|
|
234
|
-
};
|
|
235
254
|
operation: {
|
|
236
255
|
type: string;
|
|
237
256
|
enum: string[];
|
|
@@ -266,6 +285,10 @@ export declare const gitUpdateProjectTool: {
|
|
|
266
285
|
handleSync(params: GitUpdateProjectInput & {
|
|
267
286
|
action: "sync";
|
|
268
287
|
}): Promise<GitUpdateProjectResult>;
|
|
288
|
+
handleInit(params: GitUpdateProjectInput & {
|
|
289
|
+
action: "init";
|
|
290
|
+
}): Promise<GitUpdateProjectResult>;
|
|
291
|
+
groupFilesByType(projectPath: string): Promise<Record<string, string[]>>;
|
|
269
292
|
};
|
|
270
293
|
export {};
|
|
271
294
|
//# sourceMappingURL=git-update-project.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"git-update-project.d.ts","sourceRoot":"","sources":["../../src/tools/git-update-project.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,QAAA,MAAM,2BAA2B
|
|
1
|
+
{"version":3,"file":"git-update-project.d.ts","sourceRoot":"","sources":["../../src/tools/git-update-project.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,QAAA,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA4E/B,CAAC;AAEH,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAEhF,QAAA,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;EAMhC,CAAC;AAEH,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAElF,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAkCV,qBAAqB,GAAG,OAAO,CAAC,sBAAsB,CAAC;yBAmCjD,qBAAqB,GAAG;QAAE,MAAM,EAAE,QAAQ,CAAA;KAAE,GAAG,OAAO,CAAC,sBAAsB,CAAC;yBAkJ9E,qBAAqB,GAAG;QAAE,MAAM,EAAE,QAAQ,CAAA;KAAE,GAAG,OAAO,CAAC,sBAAsB,CAAC;uBAoBhF,qBAAqB,GAAG;QAAE,MAAM,EAAE,MAAM,CAAA;KAAE,GAAG,OAAO,CAAC,sBAAsB,CAAC;sBAoB7E,qBAAqB,GAAG;QAAE,MAAM,EAAE,KAAK,CAAA;KAAE,GAAG,OAAO,CAAC,sBAAsB,CAAC;wBAqBzE,qBAAqB,GAAG;QAAE,MAAM,EAAE,OAAO,CAAA;KAAE,GAAG,OAAO,CAAC,sBAAsB,CAAC;wBAiB7E,qBAAqB,GAAG;QAAE,MAAM,EAAE,OAAO,CAAA;KAAE,GAAG,OAAO,CAAC,sBAAsB,CAAC;uBAwB9E,qBAAqB,GAAG;QAAE,MAAM,EAAE,MAAM,CAAA;KAAE,GAAG,OAAO,CAAC,sBAAsB,CAAC;uBAe5E,qBAAqB,GAAG;QAAE,MAAM,EAAE,MAAM,CAAA;KAAE,GAAG,OAAO,CAAC,sBAAsB,CAAC;uBA0C5E,qBAAqB,GAAG;QAAE,MAAM,EAAE,MAAM,CAAA;KAAE,GAAG,OAAO,CAAC,sBAAsB,CAAC;kCAgFjE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,CAAC,CAAC;CAsB/E,CAAC"}
|