redmine-mcp-server
Provides tools for managing Redmine issues and projects, including listing, creating, updating issues, adding comments, and fetching project lists.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@redmine-mcp-servershow me all issues assigned to me"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Redmine MCP Server
AWS Lambda + API Gateway で動作する Redmine 向け MCP (Model Context Protocol) サーバーです。 GenU などの AI エージェントから Redmine のチケット・プロジェクトを操作できます。
機能 (Tools)
ツール名 | 説明 |
| チケット一覧の取得・検索 |
| チケット詳細・コメント・添付ファイルの取得 |
| 新規チケットの作成 |
| 既存チケットの更新 |
| チケットへのコメント追加 |
| プロジェクト一覧の取得 |
Related MCP server: Redmine MCP Server
必要環境
Node.js 20+
AWS CLI (デプロイ時)
Serverless Framework v3 (デプロイ時)
セットアップ
1. リポジトリのクローン
git clone https://github.com/YOUR_USERNAME/redmine-mcp-server.git
cd redmine-mcp-server
npm install2. 環境変数の設定
cp .env.example .env.env を編集:
REDMINE_URL=https://your-redmine.example.com
REDMINE_API_KEY=your_api_key_hereRedmine APIキーの取得方法 Redmine にログイン → 右上のユーザー名 → 「個人設定」→「APIアクセスキー」を表示
3. ローカル起動・動作確認
npm run devMCP Endpoint : http://localhost:3000/mcp
Health Check : http://localhost:3000/healthAWS Lambda へのデプロイ
1. AWS Systems Manager Parameter Store に環境変数を登録
aws ssm put-parameter \
--name "/redmine-mcp/dev/REDMINE_URL" \
--value "https://your-redmine.example.com" \
--type "String"
aws ssm put-parameter \
--name "/redmine-mcp/dev/REDMINE_API_KEY" \
--value "your_api_key_here" \
--type "SecureString"2. デプロイ
npm run deploy # dev ステージ
npm run deploy:prod # prod ステージデプロイ完了後、API Gateway の URL が表示されます:
endpoints:
POST - https://xxxxxxxxxx.execute-api.ap-northeast-1.amazonaws.com/dev/mcp
GET - https://xxxxxxxxxx.execute-api.ap-northeast-1.amazonaws.com/dev/healthGenU への接続設定
GenU の MCP 設定ファイルに以下を追加してください:
{
"mcpServers": {
"redmine": {
"url": "https://xxxxxxxxxx.execute-api.ap-northeast-1.amazonaws.com/dev/mcp",
"transport": "streamable-http"
}
}
}プロジェクト構成
redmine-mcp-server/
├── src/
│ ├── index.ts # ローカル開発用エントリーポイント
│ ├── lambda.ts # Lambda エントリーポイント
│ ├── app.ts # Express アプリ (HTTP Transport)
│ ├── server.ts # MCP ツール定義
│ └── redmine-client.ts # Redmine REST API クライアント
├── .env.example # 環境変数サンプル
├── .gitignore
├── package.json
├── tsconfig.json
├── serverless.yml # Serverless Framework 設定
└── README.mdライセンス
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Work management where AI agents are first-class members: tasks, projects, memory over hosted MCP
Remote MCP for Kanban AI boards—manage projects, tasks, and comments from AI tools.
Roadmap, tasks, releases and user feedback your coding agent reads and writes over MCP.
Project management MCP for AI agents with safe task reads and writes.
Related MCP Servers
- AlicenseAqualityCmaintenanceEnables AI assistants to interact with Redmine for task management, time logging, status updates, and progress tracking via the MCP protocol.9MIT
- AlicenseNot gradedqualityAmaintenanceEnables AI assistants to interact with Redmine project management systems through MCP tools, providing access to issues, projects, time tracking, wiki, and more.77MIT
- AlicenseAqualityAmaintenanceEnables AI assistants to manage Redmine issues, projects, time tracking, wiki, and files via the MCP protocol.338 npm5Apache 2.0
- FlicenseAqualityDmaintenanceMCP server for Redmine integration, enabling AI assistants to manage issues, upload files, automate workflows, and handle wiki pages.18-