Files
ttg-marketplace/plugins/redmine-mcp/.claude-plugin/plugin.json
T
2026-07-23 19:33:31 +02:00

34 lines
986 B
JSON

{
"name": "redmine-mcp",
"displayName": "Redmine MCP",
"version": "0.1.0",
"description": "Redmine MCP szerver — issue-k, projektek, időrögzítés, felhasználók, wiki és keresés a Redmine REST API-n keresztül.",
"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": "A Redmine példány alap URL-je, pl. https://redmine.example.com"
},
"redmine_api_key": {
"type": "string",
"title": "Redmine API kulcs",
"description": "Saját fiók → API hozzáférési kulcs (az adminnak engedélyeznie kell a REST API-t)",
"sensitive": true
}
}
}