@pschroee/redmine-mcp 0.4.1 → 0.4.2
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/README.md +5 -5
- package/dist/server.js +1 -1
- package/dist/tools/checklists.js +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -331,11 +331,11 @@ Add to your Claude Desktop config (`%APPDATA%\Claude\claude_desktop_config.json`
|
|
|
331
331
|
|
|
332
332
|
> Requires [redmine_checklists](https://www.redmineup.com/pages/plugins/checklists) plugin
|
|
333
333
|
|
|
334
|
-
- `
|
|
335
|
-
- `
|
|
336
|
-
- `
|
|
337
|
-
- `
|
|
338
|
-
- `
|
|
334
|
+
- `list_checklist_items` - List checklist items for an issue
|
|
335
|
+
- `get_checklist_item` - Get checklist item details
|
|
336
|
+
- `create_checklist_item` - Create checklist item
|
|
337
|
+
- `update_checklist_item` - Update checklist item (text, done status)
|
|
338
|
+
- `delete_checklist_item` - Delete checklist item
|
|
339
339
|
|
|
340
340
|
### Plugin: Agile (plugin_agile)
|
|
341
341
|
|
package/dist/server.js
CHANGED
|
@@ -3,7 +3,7 @@ import { registerTools } from "./tools/index.js";
|
|
|
3
3
|
export function createServer(redmineClient, toolGroups) {
|
|
4
4
|
const server = new McpServer({
|
|
5
5
|
name: "redmine-mcp",
|
|
6
|
-
version: "0.4.
|
|
6
|
+
version: "0.4.2",
|
|
7
7
|
});
|
|
8
8
|
registerTools(server, redmineClient, toolGroups);
|
|
9
9
|
return server;
|
package/dist/tools/checklists.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
export function registerChecklistsTools(server, client) {
|
|
3
|
-
server.registerTool("
|
|
3
|
+
server.registerTool("list_checklist_items", {
|
|
4
4
|
description: "List all checklist items for an issue (requires redmine_checklists plugin)",
|
|
5
5
|
inputSchema: {
|
|
6
6
|
issue_id: z.number().describe("The issue ID to get checklists for"),
|
|
@@ -11,7 +11,7 @@ export function registerChecklistsTools(server, client) {
|
|
|
11
11
|
content: [{ type: "text", text: JSON.stringify(result, null, 2) }],
|
|
12
12
|
};
|
|
13
13
|
});
|
|
14
|
-
server.registerTool("
|
|
14
|
+
server.registerTool("get_checklist_item", {
|
|
15
15
|
description: "Get a specific checklist item by ID (requires redmine_checklists plugin)",
|
|
16
16
|
inputSchema: {
|
|
17
17
|
checklist_id: z.number().describe("The checklist item ID"),
|
|
@@ -22,7 +22,7 @@ export function registerChecklistsTools(server, client) {
|
|
|
22
22
|
content: [{ type: "text", text: JSON.stringify(result, null, 2) }],
|
|
23
23
|
};
|
|
24
24
|
});
|
|
25
|
-
server.registerTool("
|
|
25
|
+
server.registerTool("create_checklist_item", {
|
|
26
26
|
description: "Create a new checklist item for an issue (requires redmine_checklists plugin)",
|
|
27
27
|
inputSchema: {
|
|
28
28
|
issue_id: z.number().describe("The issue ID to add the checklist item to"),
|
|
@@ -37,7 +37,7 @@ export function registerChecklistsTools(server, client) {
|
|
|
37
37
|
content: [{ type: "text", text: JSON.stringify(result, null, 2) }],
|
|
38
38
|
};
|
|
39
39
|
});
|
|
40
|
-
server.registerTool("
|
|
40
|
+
server.registerTool("update_checklist_item", {
|
|
41
41
|
description: "Update an existing checklist item (requires redmine_checklists plugin)",
|
|
42
42
|
inputSchema: {
|
|
43
43
|
checklist_id: z.number().describe("The checklist item ID to update"),
|
|
@@ -52,7 +52,7 @@ export function registerChecklistsTools(server, client) {
|
|
|
52
52
|
content: [{ type: "text", text: JSON.stringify(result ?? { success: true }, null, 2) }],
|
|
53
53
|
};
|
|
54
54
|
});
|
|
55
|
-
server.registerTool("
|
|
55
|
+
server.registerTool("delete_checklist_item", {
|
|
56
56
|
description: "Delete a checklist item (requires redmine_checklists plugin)",
|
|
57
57
|
inputSchema: {
|
|
58
58
|
checklist_id: z.number().describe("The checklist item ID to delete"),
|