@catchmexz/fedin-vibe-mcp-server 0.1.4 → 0.1.6
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.
|
@@ -1,69 +1,15 @@
|
|
|
1
1
|
import { zodToJsonSchema } from 'zod-to-json-schema';
|
|
2
2
|
import * as types from '../common/types.js';
|
|
3
3
|
export const getCodeManagementTools = () => [
|
|
4
|
-
// Branch Operations
|
|
5
|
-
{
|
|
6
|
-
name: "get_branch",
|
|
7
|
-
description: "[Code Management] Get information about a branch in a Codeup repository",
|
|
8
|
-
inputSchema: zodToJsonSchema(types.GetBranchSchema),
|
|
9
|
-
},
|
|
10
|
-
{
|
|
11
|
-
name: "delete_branch",
|
|
12
|
-
description: "[Code Management] Delete a branch from a Codeup repository",
|
|
13
|
-
inputSchema: zodToJsonSchema(types.DeleteBranchSchema),
|
|
14
|
-
},
|
|
15
|
-
{
|
|
16
|
-
name: "list_branches",
|
|
17
|
-
description: "[Code Management] List branches in a Codeup repository",
|
|
18
|
-
inputSchema: zodToJsonSchema(types.ListBranchesSchema),
|
|
19
|
-
},
|
|
20
4
|
// File Operations
|
|
21
5
|
{
|
|
22
6
|
name: "push_files",
|
|
23
|
-
description: "[Code Management]
|
|
7
|
+
description: "[Code Management] Upload local code changes to a Codeup repository, ensuring remote repository reflects the latest local project state. Use when: User wants to share local modifications or commit recent developments to the remote repository.",
|
|
24
8
|
inputSchema: zodToJsonSchema(types.PushFilesSchema),
|
|
25
9
|
},
|
|
26
10
|
{
|
|
27
11
|
name: "pull_files",
|
|
28
|
-
describe: "[Code Management]
|
|
12
|
+
describe: "[Code Management] Synchronize the latest code from a Codeup repository, ensuring local project alignment with remote repository state. Use when: User needs to update local codebase with the most recent changes from the remote repository.",
|
|
29
13
|
inputSchema: zodToJsonSchema(types.PullFilesSchema),
|
|
30
14
|
},
|
|
31
|
-
// Repository Operations
|
|
32
|
-
{
|
|
33
|
-
name: "get_repository",
|
|
34
|
-
description: "[Code Management] Get information about a Codeup repository",
|
|
35
|
-
inputSchema: zodToJsonSchema(types.GetRepositorySchema),
|
|
36
|
-
},
|
|
37
|
-
{
|
|
38
|
-
name: "list_repositories",
|
|
39
|
-
description: "[Code Management] Get the CodeUp Repository List.\n" +
|
|
40
|
-
"\n" +
|
|
41
|
-
"A Repository serves as a unit for managing source code and is distinct from a Project.\n" +
|
|
42
|
-
"\n" +
|
|
43
|
-
"Use Case:\n" +
|
|
44
|
-
"\n" +
|
|
45
|
-
"View my repositories",
|
|
46
|
-
inputSchema: zodToJsonSchema(types.ListRepositoriesSchema),
|
|
47
|
-
},
|
|
48
|
-
// Change Request Operations
|
|
49
|
-
{
|
|
50
|
-
name: "get_change_request",
|
|
51
|
-
description: "[Code Management] Get information about a change request",
|
|
52
|
-
inputSchema: zodToJsonSchema(types.GetChangeRequestSchema),
|
|
53
|
-
},
|
|
54
|
-
{
|
|
55
|
-
name: "list_change_requests",
|
|
56
|
-
description: "[Code Management] List change requests",
|
|
57
|
-
inputSchema: zodToJsonSchema(types.ListChangeRequestsSchema),
|
|
58
|
-
},
|
|
59
|
-
{
|
|
60
|
-
name: "list_change_request_comments",
|
|
61
|
-
description: "[Code Management] List comments on a change request",
|
|
62
|
-
inputSchema: zodToJsonSchema(types.ListChangeRequestCommentsSchema),
|
|
63
|
-
},
|
|
64
|
-
{
|
|
65
|
-
name: "list_change_request_patch_sets",
|
|
66
|
-
description: "[Code Management] List patch sets for a change request",
|
|
67
|
-
inputSchema: zodToJsonSchema(types.ListChangeRequestPatchSetsSchema),
|
|
68
|
-
},
|
|
69
15
|
];
|