Redmine MCP
by shindi-renuo
Redmine MCP is a simple MCP server designed for the Redmine Project Management Software. It was built using the MCP SDK.
View on GitHub
Last updated: N/A
Redmine MCP
This is a simple MCP server designed for the Redmine Project Management Software.
It was built using the MCP SDK.
Get started
- Clone the repo
- Install dependencies:
bun
- Set up
.env
cp .env.example .env # If it succeeds, configure .env to your liking
- Test-run MCP server using
bun run index.ts
. If it works, continue to next section.
Adding to Claude Desktop
- Open Claude Desktop
- Click ⌘, => Developer => Edit Config => Paste Code Below (after configuring)
{
"mcpServers": {
"RedmineMCP": {
"command": "bun",
"args": ["run", "/path/to/redmine-mcp-server/index.ts"],
"env": {
"REDMINE_API_KEY": "${env:REDMINE_API_KEY}",
"REDMINE_HOST": "${env:REDMINE_HOST}"
}
}
},
"globalShortcut": ""
}
Available Tools
Right now, the only available tool is the list_issues
tool. If you want to have one added, please open an issue, and let us discuss.
Enjoy!