-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.26 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "mcp-server-redmine",
"version": "1.1.0",
"description": "Model Context Protocol server for Redmine project management - create issues, track time, manage projects through AI conversations",
"type": "module",
"main": "build/index.js",
"bin": {
"mcp-server-redmine": "./build/index.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"prepare": "npm run build",
"test": "node build/test-connection.js",
"test:suite": "node build/test-suite.js"
},
"keywords": [
"mcp",
"model-context-protocol",
"redmine",
"project-management",
"issue-tracking",
"task-management",
"ai",
"amazon-q",
"claude",
"time-tracking",
"agile",
"scrum"
],
"author": "Mircea Ion <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mirceaion/mcp-server-redmine.git"
},
"bugs": {
"url": "https://github.com/mirceaion/mcp-server-redmine/issues"
},
"homepage": "https://github.com/mirceaion/mcp-server-redmine#readme",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"axios": "^1.6.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.3.0"
}
}