forked from mihajlovicjj/redmine-mcp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
94 lines (94 loc) · 3 KB
/
server.json
File metadata and controls
94 lines (94 loc) · 3 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.jztan/redmine-mcp-server",
"description": "Production-ready MCP server for Redmine with security, pagination, and enterprise features",
"repository": {
"url": "https://github.com/jztan/redmine-mcp-server",
"source": "github"
},
"version": "0.12.1",
"packages": [
{
"registryType": "pypi",
"registryBaseUrl": "https://pypi.org",
"identifier": "redmine-mcp-server",
"version": "0.12.1",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"description": "URL of your Redmine server (e.g., https://your-redmine-server.com)",
"isRequired": true,
"format": "string",
"name": "REDMINE_URL"
},
{
"description": "Redmine username for authentication (alternative to API key)",
"format": "string",
"name": "REDMINE_USERNAME"
},
{
"description": "Redmine password for authentication (alternative to API key)",
"format": "string",
"isSecret": true,
"name": "REDMINE_PASSWORD"
},
{
"description": "Redmine API key for authentication (alternative to username/password)",
"format": "string",
"isSecret": true,
"name": "REDMINE_API_KEY"
},
{
"description": "Host address for the MCP server (default: 0.0.0.0)",
"format": "string",
"default": "0.0.0.0",
"name": "SERVER_HOST"
},
{
"description": "Port for the MCP server (default: 8000)",
"format": "number",
"default": "8000",
"name": "SERVER_PORT"
},
{
"description": "Public hostname for file download URLs (default: localhost)",
"format": "string",
"default": "localhost",
"name": "PUBLIC_HOST"
},
{
"description": "Public port for file download URLs (default: 8000)",
"format": "number",
"default": "8000",
"name": "PUBLIC_PORT"
},
{
"description": "Directory for storing downloaded attachments (default: ./attachments)",
"format": "string",
"default": "./attachments",
"name": "ATTACHMENTS_DIR"
},
{
"description": "Enable automatic cleanup of expired files (default: true)",
"format": "boolean",
"default": "true",
"name": "AUTO_CLEANUP_ENABLED"
},
{
"description": "Interval between cleanup runs in minutes (default: 10)",
"format": "number",
"default": "10",
"name": "CLEANUP_INTERVAL_MINUTES"
},
{
"description": "Default expiry time for attachments in minutes (default: 60)",
"format": "number",
"default": "60",
"name": "ATTACHMENT_EXPIRES_MINUTES"
}
]
}
]
}