34 lines
949 B
JSON
34 lines
949 B
JSON
{
|
|
"name": "redmine-mcp",
|
|
"displayName": "Redmine MCP",
|
|
"version": "0.1.0",
|
|
"description": "Redmine MCP server — issues, projects, time tracking, users, wiki and search via the Redmine REST API.",
|
|
"author": {
|
|
"name": "TTG",
|
|
"email": "rastasi@gmail.com"
|
|
},
|
|
"mcpServers": {
|
|
"redmine": {
|
|
"command": "node",
|
|
"args": ["${CLAUDE_PLUGIN_ROOT}/server/index.js"],
|
|
"env": {
|
|
"REDMINE_URL": "${user_config.redmine_url}",
|
|
"REDMINE_API_KEY": "${user_config.redmine_api_key}"
|
|
}
|
|
}
|
|
},
|
|
"userConfig": {
|
|
"redmine_url": {
|
|
"type": "string",
|
|
"title": "Redmine URL",
|
|
"description": "Base URL of the Redmine instance, e.g. https://redmine.example.com"
|
|
},
|
|
"redmine_api_key": {
|
|
"type": "string",
|
|
"title": "Redmine API key",
|
|
"description": "My account → API access key (the administrator must enable the REST API)",
|
|
"sensitive": true
|
|
}
|
|
}
|
|
}
|