@pschroee/redmine-mcp 0.3.1 → 0.3.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 CHANGED
@@ -11,7 +11,7 @@ npm install -g @pschroee/redmine-mcp
11
11
  Or use directly with npx:
12
12
 
13
13
  ```bash
14
- npx @pschroee/redmine-mcp --url=https://your-redmine.com --api-key=your-api-key
14
+ npx @pschroee/redmine-mcp@latest --url=https://your-redmine.com --api-key=your-api-key
15
15
  ```
16
16
 
17
17
  ## Configuration
@@ -51,19 +51,19 @@ npx @pschroee/redmine-mcp --url=https://your-redmine.com --api-key=your-api-key
51
51
  ### Load all tools (default)
52
52
 
53
53
  ```bash
54
- npx @pschroee/redmine-mcp --url=https://redmine.example.com --api-key=abc123
54
+ npx @pschroee/redmine-mcp@latest --url=https://redmine.example.com --api-key=abc123
55
55
  ```
56
56
 
57
57
  ### Load only specific groups
58
58
 
59
59
  ```bash
60
- npx @pschroee/redmine-mcp --tools=core,metadata
60
+ npx @pschroee/redmine-mcp@latest --tools=core,metadata
61
61
  ```
62
62
 
63
63
  ### Exclude specific groups
64
64
 
65
65
  ```bash
66
- npx @pschroee/redmine-mcp --exclude=wiki,files
66
+ npx @pschroee/redmine-mcp@latest --exclude=wiki,files
67
67
  ```
68
68
 
69
69
  ## Claude Configuration
@@ -21,6 +21,7 @@ export declare class RedmineClient {
21
21
  include?: string;
22
22
  limit?: number;
23
23
  offset?: number;
24
+ query_id?: number;
24
25
  }): Promise<RedmineResult<RedmineIssuesResponse>>;
25
26
  getIssue(id: number, include?: string): Promise<RedmineResult<{
26
27
  issue: RedmineIssue;
@@ -81,6 +81,8 @@ export class RedmineClient {
81
81
  query.set("limit", String(params.limit));
82
82
  if (params?.offset)
83
83
  query.set("offset", String(params.offset));
84
+ if (params?.query_id)
85
+ query.set("query_id", String(params.query_id));
84
86
  const queryString = query.toString();
85
87
  const path = `/issues.json${queryString ? `?${queryString}` : ""}`;
86
88
  return this.request("GET", path);
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.3.1",
6
+ version: "0.3.2",
7
7
  });
8
8
  registerTools(server, redmineClient, toolGroups);
9
9
  return server;
@@ -19,6 +19,7 @@ export function registerCoreTools(server, client) {
19
19
  include: z.string().optional().describe("Include associated data: attachments, relations, journals, watchers, children"),
20
20
  limit: z.number().optional().describe("Maximum results (default 25, max 100)"),
21
21
  offset: z.number().optional().describe("Skip first N results"),
22
+ query_id: z.number().optional().describe("Use a saved query ID to filter issues (get IDs from list_queries)"),
22
23
  },
23
24
  }, async (params) => {
24
25
  const result = await client.listIssues(params);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pschroee/redmine-mcp",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "MCP server for Redmine - full API access with configurable tool groups",
5
5
  "type": "module",
6
6
  "bin": {